Retrieve a single pay-in payment
This API endpoint is your gateway to acquiring a wealth of information concerning an individual pay-in payment.
Path Parameters
- id string required
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
{
"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"
}
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...