Skip to main content

Resources

Wire Drawdown

WireDrawdown is a JSON:API resource, top-level fields:

NameTypeDescription
idstringIdentifier of the wire drawdown resource.
typestringType of the resource, the value is always wire-drawdown.
attributesJSON ObjectJSON object representing the wire drawdown data.
relationshipsJSON:API RelationshipsDescribes relationships between the wire-drawdown resource and other resources.

Attributes

NameTypeDescription
createdAtRFC3339 Date stringThe date the resource was created.
amountintegerThe amount (cents) of the wire drawdown.
descriptionstringWire drawdown description.
counterpartyWire CounterpartyThe beneficiary party on the other end of the wire drawdown.
directionstringThe direction of the wire drawdown, either Incoming or Outgoing.
imadstringInput Message Accountability Data. It's a unique number given to each wire drawdown.
omadstringOutput Message Accountability Data. It's a unique number given to each wire drawdown.
senderReferencestringSender reference.
referenceForBeneficiarystringReference for the Beneficiary.
beneficiaryInformationstringBeneficiary Information, multi-line string delimited by \n.
beneficiaryAdviceInformationstringBeneficiary Advice Information, multi-line string delimited by \n.
originatorToBeneficiaryInformationstringOriginator To Beneficiary Information, multi-line string delimited by \n.

Relationships

NameTypeDescription
accountJSON:API RelationshipThe Account the wire drawdown belongs to.
customerJSON:API RelationshipThe Customer the wire drawdown belongs to.
drawdownPaymentJSON:API RelationshipThe Wire Payment created as a result of sending the drawdown payment.
Example WireDrawdown Resource:
{
"type": "wireDrawdown",
"id": "10000",
"attributes": {
"createdAt": "2024-10-29T21:35:58.898Z",
"amount": 97,
"direction": "Incoming",
"counterparty": {
"name": "LAB LLC",
"routingNumber": "021000021",
"accountNumber": "1000000000"
},
"imad": "20241029MMAAAAAA033351",
"omad": "20241029MMBBBBBB00041910291735FT03",
"description": "Hello World",
"senderReference": "54465316546"
},
"relationships": {
"account": {
"data": {
"type": "account",
"id": "10000"
}
},
"customer": {
"data": {
"type": "customer",
"id": "10000"
}
}
}
}