Payment
Endpoint to retrieve data for payments.
Gets Payment
objects.
Authorizations
Path parameters
idinteger · int64Required
Id of the conference the payments are loaded for.
Query parameters
Responses
200
Successful response
application/json
400
Bad Request
application/json
401
Authentication problem
application/json
403
Forbidden
application/json
404
No resource found
application/json
429
Rate limitation exceeded
application/json
500
Internal error
application/json
get
GET /rest-api/v2/frame/{id}/payment/ HTTP/1.1
Host:
token: YOUR_API_KEY
Accept: */*
{
"meta": {},
"data": [
{
"id": 1,
"invoice": 1,
"bookingDate": "text",
"actualReceiptOfDate": "text",
"sum": 1,
"paymentKind": "T",
"fee": 1,
"userId": 1,
"insertTime": "text",
"internalReference": "text",
"externalReference": "text",
"canceledPaymentReferenceId": 1,
"reasonForCancellation": "text",
"bankAccountNumber": "text",
"bankCode": "text",
"bankReferenceText": "text"
}
]
}
Was this helpful?