Transaction Invoice
Details on how to obtain transaction invoice
This API is used to retrieve or download Invoice once a transaction has been successfully created in Machnet system.
GET {{url}}/senders/{{senderId}}/transactions/{{transactionId}}/invoice?type={{type}}
curl -X GET {{url}}/senders/{{senderId}}/transactions/{{transactionId}}/invoice?type=FILE \
--header 'X-Client-Id: client_id' \
--header 'X-Client-Secret: client_secret' \
--header 'Content-Type: application/json' \
--data '{
}'
API can be used to either directly download the file or generate a link to the file. The downloaded file will be of Content-Type: application/octet-stream
.
Last updated