Retrieve payment submission info
GET/api/payout_transaction_details/:id/submission-info
Retrieves the payment submission document (MT103 or pacs.008) for a SWIFT payment processed via CurrencyCloud.
Request
Path Parameters
id stringrequired
PayoutTransactionDetail identifier
Responses
- 200
- 401
- 403
OK - The request was processed successfully.
- application/json
- Schema
- Example (from schema)
Schema
fileName string
content string
format string
Possible values: [MT103, PACS008]
{
"fileName": "string",
"content": "string",
"format": "MT103"
}
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"
}
Loading...