Retrieve a single pay-in payment
GET/api/payin_transaction_details/:id
This API endpoint is your gateway to acquiring a wealth of information concerning an individual pay-in payment.
Request
Path Parameters
id stringrequired
PayinTransactionDetail identifier
Responses
- 200
- 401
- 403
- 404
OK - The request was processed successfully.
- application/json
- Schema
- Example (from schema)
Schema
id integer
currency string
amount string
executionDate stringnull
comment stringnull
subType string
Possible values: [pay_in, returned_payment]
payerName stringnull
qrReference stringnull
isInstant boolean
{
"id": 1,
"currency": "CHF",
"amount": "100.00",
"executionDate": "2023-01-01T00:00:00+00:00",
"comment": "Comment",
"subType": "pay_in",
"payerName": "Name of the payer",
"qrReference": "QR reference",
"isInstant": true
}
Unauthorised -- Your access token is wrong.
- application/json
- Schema
- Example (from schema)
Schema
type string
title string
detail string
{
"type": "string",
"title": "string",
"detail": "string"
}
Forbidden -- Access to the requested resource or action is forbidden.
- application/json
- Schema
- Example (from schema)
Schema
type string
title string
detail string
{
"type": "string",
"title": "string",
"detail": "string"
}
Not Found -- The requested resource could not be found.
Loading...