Captures
Get Invoice
Purpose:
Retrieves full information about a capture.
Preconditions:
- captureId: The unique identifier of the capture
Success:
- Response Code: HTTP 200
get/invoices/{captureId}
Path parameters
captureIdstring uuid required
Example:12345667-890a-bcde-f123-34567890abcd
The unique identifier of the capture
Response
Invoice Response
Example response
{
"uuid": "12345667-890a-bcde-f123-34567890abcd",
"amount": {
"gross": 260.27,
"net": 200.12,
"tax": 60.15
},
"created_at": "2019-03-20",
"due_date": "2019-03-20",
"state": "created",
"selected_payment_method": "bank_transfer",
"payment_methods": [
{
"type": "bank_transfer",
"data": {
"mandate_execution_date": "2019-01-20 14:00:00"
}
}
]
}