The Payment Hub API is designed based on the ISO 20022 messaging definitions to capture and process payments and perform related functions. It supports a host of functions where the client could be playing the role of a debtor agent or a creditor agent. The Payment Hub API supports the following payment rails.
Payment Rail | Version |
---|---|
TCH-RTP | 3.0 |
FedNow | Release 1 |
Fedwire Funds Service | 3.0.7 |
ACH & ACH Sameday | N/A |
Overview
Requests are authenticated using the api_key
which is shared with clients at the time of client on-boarding.
Clients can only invoke those APIs based on the permissions assigned to the api_key
The HTTP Authorization request header is used to provide authentication information. This header looks like the following.
Authorization : OPAY1-HMAC-SHA256 Credential=...,Signature=...
The constituents of the authorization header are explained in the table below.
Item | Description |
---|---|
OPAY1-HMAC-SHA256 | The algorithm that is used to calculate the signature. |
Credential | The api key |
Signature | The Base 64 encoded value of the signature bytes. Calculating the signature bytes is explained below. |
Signature Calculation
Signature is calculated as follows.
Base64(HMAC-SHA256(secret,input))
The calculation is explained in detail below.
Item | Description |
---|---|
Base64() | The encoding of the signature bytes. |
HMAC-SHA256() | The cryptographic function that computes the HMAC using the SHA256 algorithm with the client secret provided. |
secret | The secret key specific to the client that is shared with the client during onboarding. |
input | The string value of the canonicalized transform of request data that includes the HTTP method, URL, headers, query parameters and body. The details of computing the input is explained below. |
The string input is computed as follows.
input = method():path():queryString():headers():payload()
Each of the substrings is explained below.
Item | Description |
---|---|
method() | The HTTP method for the given request and evaluates to one of GET, PUT, POST or DELETE. |
path() | The absolute path component of the URI—everything starting with the "/" that follows the domain name and up to the end of the string or to the question mark character ("?") if the given URL has query string parameters. |
queryString() | A string in the format param1=value1¶m2=value2&…, where the query parameters are sorted in alphabetical order of the parameter names. In case multiple values are present for a parameter, the query parameters are sorted in alphabetical order of the parameter names and subsequently by the parameter values for each such parameter. Both the parameter names and their values should be trimmed for leading and trailing whitespaces, should be in their normal pre-encoded format. Only parameters with non-empty values, after trimming the leading and trailing whitespaces, should be included. If there are no query parameters at all, the queryString() should evaluate to an empty string (“”). |
headers() | A string in the format header1=value1&header2=value2&.......&headerN=valueN. Sort the headers alphabetically. Both the header names and their values must be trimmed for leading and trailing white-space, and in their normal pre-encoded format . Only the headers listed by the application and those that are non-empty, after trimming the leading and trailing whitespaces, are to be included. |
payload() | The raw HTTP body |
HTTP Response Codes
The Payment Hub API uses the standard HTTP response codes to return the status of an API call.
An HTTP response code of 2xx
indicates success.
An HTTP response code of 4xx
indicates a client error.
An HTTP response code of 5xx
indicates a processing error.
In these cases, the API returns a list of errors wrapped in the admi.002.001.001 message.
Error Codes
Each error in the list has a code, message, and specifics on which field the error pertains to (if applicable). In addition to these details, it can also have a list of inner errors that caused this error, on the lines of an Exception Stack trace.
Below table specifies the Error category and Error code.
Error Category | Code |
---|---|
Validation Error | HUB-10-XXXXXX. |
Business Error | HUB-20-XXXXXX. |
System Error | HUB-50-XXXXXX. |
// format
<Errors>
<error>
<code>HUB-10-132544</code>
<message>Invalid Field<message>
</error>
<error>
<code>HUB-10-120824</code>
<message>Empty Field<message>
</error>
</Erros>
The Payment Hub API supports idempotency for the HTTP methods POST, PUT, DELETE and PATCH using the header parameter, namely, idempotent_request_key. In other words, any POST, PUT, DELETE and PATCH request will be considered as a duplicate request or retry and not reprocessed by the API if all the request parameters, including the path and query parameters, the request headers and the request body, match with an earlier request. In case of duplicate requests or retries, the API response will be that of the original request. The idempotent_request_key is valid only for a duration of one hour from the time of the original request. Any duplicate request or retries after a gap of one hour from the original request will be considered as a fresh request.
Point-to-point reference, as assigned by the instructing party, and sent to the next party in the chain to unambiguously identify the message.
The instructing party must make sure that MessageIdentification
is unique per instructed party for a pre-agreed period.
Below is the format used to generate the Message Id:
Format:
POS | Length | Description |
---|---|---|
1 | 1 | C |
2-11 | 10 | ClientKey Ex: 5822512250 |
12-33 | 22 | UUID |
34-35 | 2 | Julian Date |
Below code snippet to generate UUID for 22 characters:
UUID uuid = UUID.randomUUID();
// Create byte[] for base64 from uuid
byte[] src = ByteBuffer.wrap(new byte[16])
.putLong(uuid.getMostSignificantBits())
.putLong(uuid.getLeastSignificantBits())
.array();
String uuidInBase64UrlSafe = null;
uuidInBase64UrlSafe = Base64.getUrlEncoder().encodeToString(src);
if (uuidInBase64UrlSafe.length() < 22) {
StringUtils.rightPad(uuidInBase64UrlSafe, 22, "=");
}
uuidInBase64UrlSafe = uuidInBase64UrlSafe.substring(0, 22);
Every API call should include the following request headers to define the context in which the API is invoked.
client_key required | string <= 10 characters ^[a-zA-Z0-9]{1,10}$ The unique identifier assigned by the Payment Hub to the client. |
product required | string <= 100 characters ^[a-zA-Z0-9_.& -]{1,100}$ The product identifier corresponding to the API. |
payment_channel required | string <= 100 characters ^[a-zA-Z0-9_.& -]{1,100}$ The FI channel vide which the API is invoked. |
access_channel | string <= 100 characters ^[a-zA-Z0-9_.& -]{1,100}$ This is the internal channel through which the API is invoked. |
requestor_type required | string <= 50 characters ^[a-zA-Z0-9_ -]{1,50}$ Identifies the requestor type for the API request. |
client_requestor_reference | string <= 100 characters ^[a-zA-Z0-9_.@&+ -]{1,100}$ The identifier for the requestor of the API, in the client system. Either the client_requestor_reference or the requestor must be available in every API request for audit purposes. |
requestor | string <= 100 characters ^[a-zA-Z0-9_.@& -]{1,100}$ The identifier for the requestor of the API, in the Payment Hub. Either the client_requestor_reference or the requestor must be available in every API request for audit purposes. |
context_variant | string <= 50 characters ^[a-zA-Z0-9_= -]{1,50}$ To be used if there is a need to provide additional contextual information. For future use. |
idempotent_request_key required | string <= 50 characters ^[a-zA-Z0-9_=-]{1,50}$ The unique token that clients can generate and maintain in order to identify an API request. This is used to identify duplicate requests and retrials. |
trace_id | string <= 50 characters ^[a-zA-Z0-9_=-]{1,50}$ The unique reference that can be used for tracing and debugging an API call. |
timestamp required | string <ISO 8601 DateTime with offset YYYY-MM-DDThh:mm:ss.sss+/-hh:mm> The UTC datetime when the API is invoked, in the ISO 8601 format |
X-PAAS-Headers | string For additional context information such as end user IP address, session information and so on. The content is a list of key-value pairs separated by semicolon (;) where key and value are separated by equals sign(=). |
HTTP header parameters are returned as part of every API response. Most of these parameters match those sent in the request. Every API call has the following response headers.
request_uuid required | string <= 50 characters ^[a-zA-Z0-9_=-]{1,50}$ The unique ID for the request, generated by the API, that can be used for tracing and audit trail. |
client_key | string <= 10 characters ^[a-zA-Z0-9]{1,10}$ The unique identifier assigned by the Payment Hub to the client. |
product | string <= 100 characters ^[a-zA-Z0-9_.& -]{1,100}$ The product identifier corresponding to the API. |
payment_channel | string <= 100 characters ^[a-zA-Z0-9_.& -]{1,100}$ The FI channel vide which the API is invoked. |
access_channel | string <= 100 characters ^[a-zA-Z0-9_.& -]{1,100}$ This is internal channel through which the API is invoked. |
requestor_type | string <= 50 characters ^[a-zA-Z0-9_ -]{1,50}$ Identifies the requestor type for the API request. |
client_requestor_reference | string <= 100 characters ^[a-zA-Z0-9_.@&+ -]{1,100}$ The identifier for the requestor for the API, in the client system. Either the client_requestor_reference or the requestor has to be available in every API request for audit purposes. |
requestor | string <= 100 characters ^[a-zA-Z0-9_.@& -]{1,100}$ The identifier for the requestor of the API, in the Payment Hub. Either the client_requestor_reference or the requestor has to be available in every API request for audit purposes. |
context_variant | string <= 50 characters ^[a-zA-Z0-9_= -]{1,50}$ To be used if there is a need to provide additional contextual information. For future use. |
idempotent_request_key | string <= 50 characters ^[a-zA-Z0-9_=-]{1,50}$ The unique token that clients can generate and maintain in order to identify an API request. This is used to identify duplicate requests and retrials. |
X-PAAS-Headers | string For additional context information such as end user IP address, session information and so on. The content is a list of key-value pairs separated by semicolon (;) where key and value are separated by equals sign(=). |
The user service level offered by Payment Hub API includes payment options for instant, urgent, and regular response times. The fulfillment service level offered by Payment Hub API includes options for real-time payments, card payments with Visa, ACH, and ACH Sameday. These service levels are used to ensure seamless and efficient transaction handling. Payment Hub API accepts the service levels given below.
User service Level | Fulfillment Service Level |
---|---|
COSMOS.RT.INST | COSMOS.RT.TCH.RTP, COSMOS.RT.FEDNOW |
COSMOS.RT.URGP | COSMOS.RT.FEDWIRE, COSMOS.RT.ACH.SMDY |
COSMOS.RT.RGLR | COSMOS.RT.ACH |
The Initiate Customer Credit Transfer API is used to request movement of funds from the debtor account to the creditor. The debtor or the Initiating Party initiates the payment request to their corresponding debtor agent. The debtor agent is the account servicer of the debtor. The request is sent using the CustomerCreditTransferInitiation
The API processes the request and responds with the CustomerPaymentStatusReport
which provides the appropriate status of the payment initiation request such as accepted and settlement completed(ACCC), accepted without posting(ACWP), rejected(RJCT) etc.,.
Document required | object |
Success CustomerPaymentStatusReport
Bad Request
System Error.
Server Error
The AdditionalPaymentInformaion
message is sent by an account servicing institution to an account owner. This message is used to provide additional or corrected information on a payment instruction or statement entry, in order to allow reconciliation. The request is processed and responds with the CaseResponse
object.
When the original payment information is not located in the Payment Hub API, it returns a RejectInvestigation
in the CaseResponse object. Otherwise, it returns the NoticeOfCaseAssignment
in the CaseResponse object. Appropriate status codes are returned in the response.
Document required | object |
Success
Bad Request
System Error.
Server Error.
The Request for Information for the RFP or the UnableToApply
message is sent by a case creator or a case assigner to a case assignee. This message is used to initiate an investigation of a payment instruction that cannot be executed or reconciled. The request is processed and responds with the CaseResponse object. When the original RFP instruction is not located in the Payment Hub API, it returns a RejectInvestigation in the CaseResponse object. Otherwise, it returns the NoticeOfCaseAssignment in the CaseResponse object. Appropriate status codes are returned in the response.
Document required | object |
Success
Bad Request
System Error.
Server Error.
This message is used to request the cancellation of an original payment instruction. The CustomerPaymentCancellationRequest
message is issued by the initiating party to request the cancellation of an initiation payment message previously sent. The request is processed and responds with the CaseResponse
object. When the original payment information is not located in the Payment Hub API, it returns a RejectInvestigation
in the CaseResponse object. Otherwise, it returns the NoticeOfCaseAssignment
in the CaseResponse object. Appropriate status codes are returned in the response. The final outcome, ResolutionOfInvestigation
is sent as an event or Webhook to the case creator indicating the status of the RROF. Whether the payment can be cancelled or not.
Document required | object |
Success
Bad Request
System Error.
Server Error.
The CreditorPaymentActivationRequestStatusReport message is sent by the agent to inform the RFP requestor about the positive or negative status of a creditor payment activation request. The message returns a 200 success response.
Document required | object |
Success
Bad Request
System Error.
Server Error.
The RemittanceAdvice
message is initiated by the debtor agent to provide remittance details that are associated with a payment.
Document required | object |
Success
Bad Request
System Error.
Server Error.
{- "Document": {
- "RmtAdvc": {
- "GrpHdr": {
- "MsgId": "string",
- "CreDtTm": "string",
- "CpyInd": "CODU",
- "InitgPty": {
- "Nm": "string",
- "PstlAdr": {
- "AdrTp": "string",
- "Dept": "string",
- "SubDept": "string",
- "StrtNm": "string",
- "BldgNb": "string",
- "BldgNm": "string",
- "Flr": "string",
- "PstBx": "string",
- "Room": "string",
- "PstCd": "string",
- "TwnNm": "string",
- "TwnLctnNm": "string",
- "DstrctNm": "string",
- "CtrySubDvsn": "string",
- "Ctry": "st",
- "AdrLine": [
- "string"
]
}, - "Id": {
- "AnyBIC": "string",
- "LEI": "stringstringstringst",
- "Othr": [
- {
- "Id": "string",
- "SchmeNm": "stri",
- "Issr": "string"
}
]
}, - "CtryOfRes": "st",
- "CtctDtls": {
- "NmPrfx": "DOCT",
- "Nm": "string",
- "PhneNb": "string",
- "MobNb": "string",
- "FaxNb": "string",
- "EmailAdr": "string",
- "EmailPurp": "string",
- "JobTitl": "string",
- "Rspnsblty": "string",
- "Dept": "string",
- "Othr": [
- {
- "ChanlTp": "stri",
- "Id": "string"
}
], - "PrefrdMtd": "string"
}
}, - "MsgRcpt": {
- "Nm": "string",
- "PstlAdr": {
- "AdrTp": "string",
- "Dept": "string",
- "SubDept": "string",
- "StrtNm": "string",
- "BldgNb": "string",
- "BldgNm": "string",
- "Flr": "string",
- "PstBx": "string",
- "Room": "string",
- "PstCd": "string",
- "TwnNm": "string",
- "TwnLctnNm": "string",
- "DstrctNm": "string",
- "CtrySubDvsn": "string",
- "Ctry": "st",
- "AdrLine": [
- "string"
]
}, - "Id": {
- "AnyBIC": "string",
- "LEI": "stringstringstringst",
- "Othr": [
- {
- "Id": "string",
- "SchmeNm": "stri",
- "Issr": "string"
}
]
}, - "CtryOfRes": "st",
- "CtctDtls": {
- "NmPrfx": "DOCT",
- "Nm": "string",
- "PhneNb": "string",
- "MobNb": "string",
- "FaxNb": "string",
- "EmailAdr": "string",
- "EmailPurp": "string",
- "JobTitl": "string",
- "Rspnsblty": "string",
- "Dept": "string",
- "Othr": [
- {
- "ChanlTp": "stri",
- "Id": "string"
}
], - "PrefrdMtd": "string"
}
}, - "FwdgAgt": {
- "FinInstnId": {
- "BICFI": "stringst",
- "ClrSysMmbId": {
- "ClrSysId": "strin",
- "MmbId": "string"
}, - "LEI": "stringstringstringst",
- "Nm": "string",
- "PstlAdr": {
- "AdrTp": "string",
- "Dept": "string",
- "SubDept": "string",
- "StrtNm": "string",
- "BldgNb": "string",
- "BldgNm": "string",
- "Flr": "string",
- "PstBx": "string",
- "Room": "string",
- "PstCd": "string",
- "TwnNm": "string",
- "TwnLctnNm": "string",
- "DstrctNm": "string",
- "CtrySubDvsn": "string",
- "Ctry": "st",
- "AdrLine": [
- "string"
]
}, - "Othr": {
- "Id": "string",
- "SchmeNm": "stri",
- "Issr": "string"
}
}, - "BrnchId": {
- "Id": "string",
- "LEI": "stringstringstringst",
- "Nm": "string",
- "PstlAdr": {
- "AdrTp": "string",
- "Dept": "string",
- "SubDept": "string",
- "StrtNm": "string",
- "BldgNb": "string",
- "BldgNm": "string",
- "Flr": "string",
- "PstBx": "string",
- "Room": "string",
- "PstCd": "string",
- "TwnNm": "string",
- "TwnLctnNm": "string",
- "DstrctNm": "string",
- "CtrySubDvsn": "string",
- "Ctry": "st",
- "AdrLine": [
- "string"
]
}
}
}
}, - "RmtInf": [
- {
- "RmtId": "string",
- "Ustrd": [
- "string"
], - "Strd": [
- {
- "RfrdDocInf": [
- {
- "Tp": {
- "CdOrPrtry": "MSIN",
- "Issr": "string"
}, - "Nb": "string",
- "RltdDt": "string",
- "LineDtls": [
- {
- "Id": [
- {
- "Tp": {
- "CdOrPrtry": "stri",
- "Issr": "string"
}, - "Nb": "string",
- "RltdDt": "string"
}
], - "Desc": "string",
- "Amt": {
- "DuePyblAmt": {
- "Ccy": "str",
- "value": 0
}, - "DscntApldAmt": [
- {
- "Tp": "stri",
- "Amt": {
- "Ccy": "str",
- "value": 0
}
}
], - "CdtNoteAmt": {
- "Ccy": "str",
- "value": 0
}, - "TaxAmt": [
- {
- "Tp": "stri",
- "Amt": {
- "Ccy": "str",
- "value": 0
}
}
], - "AdjstmntAmtAndRsn": [
- {
- "Amt": {
- "Ccy": "str",
- "value": 0
}, - "CdtDbtInd": "CRDT",
- "Rsn": "stri",
- "AddtlInf": "string"
}
], - "RmtdAmt": {
- "Ccy": "str",
- "value": 0
}
}
}
]
}
], - "RfrdDocAmt": {
- "DuePyblAmt": {
- "Ccy": "str",
- "value": 0
}, - "DscntApldAmt": [
- {
- "Tp": "stri",
- "Amt": {
- "Ccy": "str",
- "value": 0
}
}
], - "CdtNoteAmt": {
- "Ccy": "str",
- "value": 0
}, - "TaxAmt": [
- {
- "Tp": "stri",
- "Amt": {
- "Ccy": "str",
- "value": 0
}
}
], - "AdjstmntAmtAndRsn": [
- {
- "Amt": {
- "Ccy": "str",
- "value": 0
}, - "CdtDbtInd": "CRDT",
- "Rsn": "stri",
- "AddtlInf": "string"
}
], - "RmtdAmt": {
- "Ccy": "str",
- "value": 0
}
}, - "CdtrRefInf": {
- "Tp": {
- "CdOrPrtry": "RADM",
- "Issr": "string"
}, - "Ref": "string"
}, - "Invcr": {
- "Nm": "string",
- "PstlAdr": {
- "AdrTp": "string",
- "Dept": "string",
- "SubDept": "string",
- "StrtNm": "string",
- "BldgNb": "string",
- "BldgNm": "string",
- "Flr": "string",
- "PstBx": "string",
- "Room": "string",
- "PstCd": "string",
- "TwnNm": "string",
- "TwnLctnNm": "string",
- "DstrctNm": "string",
- "CtrySubDvsn": "string",
- "Ctry": "st",
- "AdrLine": [
- "string"
]
}, - "Id": {
- "AnyBIC": "string",
- "LEI": "stringstringstringst",
- "Othr": [
- {
- "Id": "string",
- "SchmeNm": "stri",
- "Issr": "string"
}
]
}, - "CtryOfRes": "st",
- "CtctDtls": {
- "NmPrfx": "DOCT",
- "Nm": "string",
- "PhneNb": "string",
- "MobNb": "string",
- "FaxNb": "string",
- "EmailAdr": "string",
- "EmailPurp": "string",
- "JobTitl": "string",
- "Rspnsblty": "string",
- "Dept": "string",
- "Othr": [
- {
- "ChanlTp": "stri",
- "Id": "string"
}
], - "PrefrdMtd": "string"
}
}, - "Invcee": {
- "Nm": "string",
- "PstlAdr": {
- "AdrTp": "string",
- "Dept": "string",
- "SubDept": "string",
- "StrtNm": "string",
- "BldgNb": "string",
- "BldgNm": "string",
- "Flr": "string",
- "PstBx": "string",
- "Room": "string",
- "PstCd": "string",
- "TwnNm": "string",
- "TwnLctnNm": "string",
- "DstrctNm": "string",
- "CtrySubDvsn": "string",
- "Ctry": "st",
- "AdrLine": [
- "string"
]
}, - "Id": {
- "AnyBIC": "string",
- "LEI": "stringstringstringst",
- "Othr": [
- {
- "Id": "string",
- "SchmeNm": "stri",
- "Issr": "string"
}
]
}, - "CtryOfRes": "st",
- "CtctDtls": {
- "NmPrfx": "DOCT",
- "Nm": "string",
- "PhneNb": "string",
- "MobNb": "string",
- "FaxNb": "string",
- "EmailAdr": "string",
- "EmailPurp": "string",
- "JobTitl": "string",
- "Rspnsblty": "string",
- "Dept": "string",
- "Othr": [
- {
- "ChanlTp": "stri",
- "Id": "string"
}
], - "PrefrdMtd": "string"
}
}, - "TaxRmt": {
- "Cdtr": {
- "TaxId": "string",
- "RegnId": "string",
- "TaxTp": "string"
}, - "Dbtr": {
- "TaxId": "string",
- "RegnId": "string",
- "TaxTp": "string",
- "Authstn": {
- "Titl": "string",
- "Nm": "string"
}
}, - "UltmtDbtr": {
- "TaxId": "string",
- "RegnId": "string",
- "TaxTp": "string",
- "Authstn": {
- "Titl": "string",
- "Nm": "string"
}
}, - "AdmstnZone": "string",
- "RefNb": "string",
- "Mtd": "string",
- "TtlTaxblBaseAmt": {
- "Ccy": "str",
- "value": 0
}, - "TtlTaxAmt": {
- "Ccy": "str",
- "value": 0
}, - "Dt": "string",
- "SeqNb": 0,
- "Rcrd": [
- {
- "Tp": "string",
- "Ctgy": "string",
- "CtgyDtls": "string",
- "DbtrSts": "string",
- "CertId": "string",
- "FrmsCd": "string",
- "Prd": {
- "Yr": "string",
- "Tp": "MM01",
- "FrToDt": {
- "FrDt": "string",
- "ToDt": "string"
}
}, - "TaxAmt": {
- "Rate": 0,
- "TaxblBaseAmt": {
- "Ccy": "str",
- "value": 0
}, - "TtlAmt": {
- "Ccy": "str",
- "value": 0
}, - "Dtls": [
- {
- "Prd": {
- "Yr": "string",
- "Tp": "MM01",
- "FrToDt": {
- "FrDt": "string",
- "ToDt": "string"
}
}, - "Amt": {
- "Ccy": "str",
- "value": 0
}
}
]
}, - "AddtlInf": "string"
}
]
}, - "GrnshmtRmt": {
- "Tp": {
- "CdOrPrtry": "stri",
- "Issr": "string"
}, - "Grnshee": {
- "Nm": "string",
- "PstlAdr": {
- "AdrTp": "string",
- "Dept": "string",
- "SubDept": "string",
- "StrtNm": "string",
- "BldgNb": "string",
- "BldgNm": "string",
- "Flr": "string",
- "PstBx": "string",
- "Room": "string",
- "PstCd": "string",
- "TwnNm": "string",
- "TwnLctnNm": "string",
- "DstrctNm": "string",
- "CtrySubDvsn": "string",
- "Ctry": "st",
- "AdrLine": [
- "string"
]
}, - "Id": {
- "AnyBIC": "string",
- "LEI": "stringstringstringst",
- "Othr": [
- {
- "Id": "string",
- "SchmeNm": "stri",
- "Issr": "string"
}
]
}, - "CtryOfRes": "st",
- "CtctDtls": {
- "NmPrfx": "DOCT",
- "Nm": "string",
- "PhneNb": "string",
- "MobNb": "string",
- "FaxNb": "string",
- "EmailAdr": "string",
- "EmailPurp": "string",
- "JobTitl": "string",
- "Rspnsblty": "string",
- "Dept": "string",
- "Othr": [
- {
- "ChanlTp": "stri",
- "Id": "string"
}
], - "PrefrdMtd": "string"
}
}, - "GrnshmtAdmstr": {
- "Nm": "string",
- "PstlAdr": {
- "AdrTp": "string",
- "Dept": "string",
- "SubDept": "string",
- "StrtNm": "string",
- "BldgNb": "string",
- "BldgNm": "string",
- "Flr": "string",
- "PstBx": "string",
- "Room": "string",
- "PstCd": "string",
- "TwnNm": "string",
- "TwnLctnNm": "string",
- "DstrctNm": "string",
- "CtrySubDvsn": "string",
- "Ctry": "st",
- "AdrLine": [
- "string"
]
}, - "Id": {
- "AnyBIC": "string",
- "LEI": "stringstringstringst",
- "Othr": [
- {
- "Id": "string",
- "SchmeNm": "stri",
- "Issr": "string"
}
]
}, - "CtryOfRes": "st",
- "CtctDtls": {
- "NmPrfx": "DOCT",
- "Nm": "string",
- "PhneNb": "string",
- "MobNb": "string",
- "FaxNb": "string",
- "EmailAdr": "string",
- "EmailPurp": "string",
- "JobTitl": "string",
- "Rspnsblty": "string",
- "Dept": "string",
- "Othr": [
- {
- "ChanlTp": "stri",
- "Id": "string"
}
], - "PrefrdMtd": "string"
}
}, - "RefNb": "string",
- "Dt": "string",
- "RmtdAmt": {
- "Ccy": "str",
- "value": 0
}, - "FmlyMdclInsrncInd": true,
- "MplyeeTermntnInd": true
}, - "AddtlRmtInf": [
- "string"
]
}
], - "OrgnlPmtInf": {
- "Refs": {
- "PmtInfId": "string",
- "InstrId": "string",
- "EndToEndId": "string",
- "TxId": "string",
- "UETR": "string",
- "MndtId": "string",
- "CdtrSchmeId": {
- "Nm": "string",
- "PstlAdr": {
- "AdrTp": "string",
- "Dept": "string",
- "SubDept": "string",
- "StrtNm": "string",
- "BldgNb": "string",
- "BldgNm": "string",
- "Flr": "string",
- "PstBx": "string",
- "Room": "string",
- "PstCd": "string",
- "TwnNm": "string",
- "TwnLctnNm": "string",
- "DstrctNm": "string",
- "CtrySubDvsn": "string",
- "Ctry": "st",
- "AdrLine": [
- "string"
]
}, - "Id": {
- "AnyBIC": "string",
- "LEI": "stringstringstringst",
- "Othr": [
- {
- "Id": "string",
- "SchmeNm": "stri",
- "Issr": "string"
}
]
}, - "CtryOfRes": "st",
- "CtctDtls": {
- "NmPrfx": "DOCT",
- "Nm": "string",
- "PhneNb": "string",
- "MobNb": "string",
- "FaxNb": "string",
- "EmailAdr": "string",
- "EmailPurp": "string",
- "JobTitl": "string",
- "Rspnsblty": "string",
- "Dept": "string",
- "Othr": [
- {
- "ChanlTp": "stri",
- "Id": "string"
}
], - "PrefrdMtd": "string"
}
}
}, - "PmtTpInf": {
- "InstrPrty": "HIGH",
- "SvcLvl": [
- "stri"
], - "LclInstrm": "string",
- "CtgyPurp": "stri"
}, - "Amt": {
- "InstdAmt": {
- "Ccy": "str",
- "value": 0
}
}, - "XchgRateInf": {
- "UnitCcy": "str",
- "XchgRate": 0,
- "RateTp": "SPOT",
- "CtrctId": "string"
}, - "ReqdExctnDt": "string",
- "ReqdColltnDt": "string",
- "Dbtr": {
- "Nm": "string",
- "PstlAdr": {
- "AdrTp": "string",
- "Dept": "string",
- "SubDept": "string",
- "StrtNm": "string",
- "BldgNb": "string",
- "BldgNm": "string",
- "Flr": "string",
- "PstBx": "string",
- "Room": "string",
- "PstCd": "string",
- "TwnNm": "string",
- "TwnLctnNm": "string",
- "DstrctNm": "string",
- "CtrySubDvsn": "string",
- "Ctry": "st",
- "AdrLine": [
- "string"
]
}, - "Id": {
- "AnyBIC": "string",
- "LEI": "stringstringstringst",
- "Othr": [
- {
- "Id": "string",
- "SchmeNm": "stri",
- "Issr": "string"
}
]
}, - "CtryOfRes": "st",
- "CtctDtls": {
- "NmPrfx": "DOCT",
- "Nm": "string",
- "PhneNb": "string",
- "MobNb": "string",
- "FaxNb": "string",
- "EmailAdr": "string",
- "EmailPurp": "string",
- "JobTitl": "string",
- "Rspnsblty": "string",
- "Dept": "string",
- "Othr": [
- {
- "ChanlTp": "stri",
- "Id": "string"
}
], - "PrefrdMtd": "string"
}
}, - "DbtrAcct": {
- "Id": "string",
- "Tp": "stri",
- "Ccy": "str",
- "Nm": "string",
- "Prxy": {
- "Tp": "stri",
- "Id": "string"
}
}, - "DbtrAgt": {
- "FinInstnId": {
- "BICFI": "stringst",
- "ClrSysMmbId": {
- "ClrSysId": "strin",
- "MmbId": "string"
}, - "LEI": "stringstringstringst",
- "Nm": "string",
- "PstlAdr": {
- "AdrTp": "string",
- "Dept": "string",
- "SubDept": "string",
- "StrtNm": "string",
- "BldgNb": "string",
- "BldgNm": "string",
- "Flr": "string",
- "PstBx": "string",
- "Room": "string",
- "PstCd": "string",
- "TwnNm": "string",
- "TwnLctnNm": "string",
- "DstrctNm": "string",
- "CtrySubDvsn": "string",
- "Ctry": "st",
- "AdrLine": [
- "string"
]
}, - "Othr": {
- "Id": "string",
- "SchmeNm": "stri",
- "Issr": "string"
}
}, - "BrnchId": {
- "Id": "string",
- "LEI": "stringstringstringst",
- "Nm": "string",
- "PstlAdr": {
- "AdrTp": "string",
- "Dept": "string",
- "SubDept": "string",
- "StrtNm": "string",
- "BldgNb": "string",
- "BldgNm": "string",
- "Flr": "string",
- "PstBx": "string",
- "Room": "string",
- "PstCd": "string",
- "TwnNm": "string",
- "TwnLctnNm": "string",
- "DstrctNm": "string",
- "CtrySubDvsn": "string",
- "Ctry": "st",
- "AdrLine": [
- "string"
]
}
}
}, - "Cdtr": {
- "Nm": "string",
- "PstlAdr": {
- "AdrTp": "string",
- "Dept": "string",
- "SubDept": "string",
- "StrtNm": "string",
- "BldgNb": "string",
- "BldgNm": "string",
- "Flr": "string",
- "PstBx": "string",
- "Room": "string",
- "PstCd": "string",
- "TwnNm": "string",
- "TwnLctnNm": "string",
- "DstrctNm": "string",
- "CtrySubDvsn": "string",
- "Ctry": "st",
- "AdrLine": [
- "string"
]
}, - "Id": {
- "AnyBIC": "string",
- "LEI": "stringstringstringst",
- "Othr": [
- {
- "Id": "string",
- "SchmeNm": "stri",
- "Issr": "string"
}
]
}, - "CtryOfRes": "st",
- "CtctDtls": {
- "NmPrfx": "DOCT",
- "Nm": "string",
- "PhneNb": "string",
- "MobNb": "string",
- "FaxNb": "string",
- "EmailAdr": "string",
- "EmailPurp": "string",
- "JobTitl": "string",
- "Rspnsblty": "string",
- "Dept": "string",
- "Othr": [
- {
- "ChanlTp": "stri",
- "Id": "string"
}
], - "PrefrdMtd": "string"
}
}, - "CdtrAcct": {
- "Id": "string",
- "Tp": "stri",
- "Ccy": "str",
- "Nm": "string",
- "Prxy": {
- "Tp": "stri",
- "Id": "string"
}
}, - "CdtrAgt": {
- "FinInstnId": {
- "BICFI": "stringst",
- "ClrSysMmbId": {
- "ClrSysId": "strin",
- "MmbId": "string"
}, - "LEI": "stringstringstringst",
- "Nm": "string",
- "PstlAdr": {
- "AdrTp": "string",
- "Dept": "string",
- "SubDept": "string",
- "StrtNm": "string",
- "BldgNb": "string",
- "BldgNm": "string",
- "Flr": "string",
- "PstBx": "string",
- "Room": "string",
- "PstCd": "string",
- "TwnNm": "string",
- "TwnLctnNm": "string",
- "DstrctNm": "string",
- "CtrySubDvsn": "string",
- "Ctry": "st",
- "AdrLine": [
- "string"
]
}, - "Othr": {
- "Id": "string",
- "SchmeNm": "stri",
- "Issr": "string"
}
}, - "BrnchId": {
- "Id": "string",
- "LEI": "stringstringstringst",
- "Nm": "string",
- "PstlAdr": {
- "AdrTp": "string",
- "Dept": "string",
- "SubDept": "string",
- "StrtNm": "string",
- "BldgNb": "string",
- "BldgNm": "string",
- "Flr": "string",
- "PstBx": "string",
- "Room": "string",
- "PstCd": "string",
- "TwnNm": "string",
- "TwnLctnNm": "string",
- "DstrctNm": "string",
- "CtrySubDvsn": "string",
- "Ctry": "st",
- "AdrLine": [
- "string"
]
}
}
}
}
}
]
}
}
}
The FinancialInstitutionCreditTransfer message is sent by a debtor financial institution to a creditor financial institution, directly or through other agents and/or a payment clearing and settlement system. It is used to move funds from a debtor account to a creditor, where both debtor and creditor are financial institutions. The request is sent using the FinancialInstitutionCreditTransfer
The API processes the request and responds with the CustomerPaymentStatusReport
which provides the appropriate status of the payment initiation request such as accepted and settlement completed(ACCC), accepted without posting(ACWP), rejected(RJCT) etc.,.
Document required | object |
Success CustomerPaymentStatusReport
Bad Request
System Error.
Server Error
The Initiate Gateway Credit Transfer API is used to move funds from the debtor account to the creditor. The FI or the debtor agent sends the message to Payment Hub for the clearing. Payment Hub acts as a clearing gateway in this context. API responds with PaymentStatusReport
with the appropriate status.
Document required | object |
Success PaymentStatusReport
Bad Request
System Error.
Server Error
{- "Document": {
- "FIToFICstmrCdtTrf": {
- "GrpHdr": {
- "MsgId": "string",
- "CreDtTm": "string",
- "NbOfTxs": "s",
- "CtrlSum": 0,
- "TtlIntrBkSttlmAmt": {
- "Value": 0,
- "Ccy": "str"
}, - "IntrBkSttlmDt": "string",
- "SttlmInf": {
- "SttlmMtd": "INDA",
- "SttlmAcct": {
- "Id": "string",
- "Tp": "stri",
- "Ccy": "str",
- "Nm": "string",
- "Prxy": {
- "Tp": "stri",
- "Id": "string"
}
}, - "ClrSys": "ABE",
- "InstgRmbrsmntAgt": {
- "FinInstnId": {
- "BICFI": "stringst",
- "ClrSysMmbId": {
- "ClrSysId": "strin",
- "MmbId": "string"
}, - "LEI": "stringstringstringst",
- "Nm": "string",
- "PstlAdr": {
- "AdrTp": "string",
- "Dept": "string",
- "SubDept": "string",
- "StrtNm": "string",
- "BldgNb": "string",
- "BldgNm": "string",
- "Flr": "string",
- "PstBx": "string",
- "Room": "string",
- "PstCd": "string",
- "TwnNm": "string",
- "TwnLctnNm": "string",
- "DstrctNm": "string",
- "CtrySubDvsn": "string",
- "Ctry": "st",
- "AdrLine": [
- "string"
]
}, - "Othr": {
- "Id": "string",
- "SchmeNm": "stri",
- "Issr": "string"
}
}, - "BrnchId": {
- "Id": "string",
- "LEI": "stringstringstringst",
- "Nm": "string",
- "PstlAdr": {
- "AdrTp": "string",
- "Dept": "string",
- "SubDept": "string",
- "StrtNm": "string",
- "BldgNb": "string",
- "BldgNm": "string",
- "Flr": "string",
- "PstBx": "string",
- "Room": "string",
- "PstCd": "string",
- "TwnNm": "string",
- "TwnLctnNm": "string",
- "DstrctNm": "string",
- "CtrySubDvsn": "string",
- "Ctry": "st",
- "AdrLine": [
- "string"
]
}
}
}, - "InstgRmbrsmntAgtAcct": {
- "Id": "string",
- "Tp": "stri",
- "Ccy": "str",
- "Nm": "string",
- "Prxy": {
- "Tp": "stri",
- "Id": "string"
}
}, - "InstdRmbrsmntAgt": {
- "FinInstnId": {
- "BICFI": "stringst",
- "ClrSysMmbId": {
- "ClrSysId": "strin",
- "MmbId": "string"
}, - "LEI": "stringstringstringst",
- "Nm": "string",
- "PstlAdr": {
- "AdrTp": "string",
- "Dept": "string",
- "SubDept": "string",
- "StrtNm": "string",
- "BldgNb": "string",
- "BldgNm": "string",
- "Flr": "string",
- "PstBx": "string",
- "Room": "string",
- "PstCd": "string",
- "TwnNm": "string",
- "TwnLctnNm": "string",
- "DstrctNm": "string",
- "CtrySubDvsn": "string",
- "Ctry": "st",
- "AdrLine": [
- "string"
]
}, - "Othr": {
- "Id": "string",
- "SchmeNm": "stri",
- "Issr": "string"
}
}, - "BrnchId": {
- "Id": "string",
- "LEI": "stringstringstringst",
- "Nm": "string",
- "PstlAdr": {
- "AdrTp": "string",
- "Dept": "string",
- "SubDept": "string",
- "StrtNm": "string",
- "BldgNb": "string",
- "BldgNm": "string",
- "Flr": "string",
- "PstBx": "string",
- "Room": "string",
- "PstCd": "string",
- "TwnNm": "string",
- "TwnLctnNm": "string",
- "DstrctNm": "string",
- "CtrySubDvsn": "string",
- "Ctry": "st",
- "AdrLine": [
- "string"
]
}
}
}, - "InstdRmbrsmntAgtAcct": {
- "Id": "string",
- "Tp": "stri",
- "Ccy": "str",
- "Nm": "string",
- "Prxy": {
- "Tp": "stri",
- "Id": "string"
}
}, - "ThrdRmbrsmntAgt": {
- "FinInstnId": {
- "BICFI": "stringst",
- "ClrSysMmbId": {
- "ClrSysId": "strin",
- "MmbId": "string"
}, - "LEI": "stringstringstringst",
- "Nm": "string",
- "PstlAdr": {
- "AdrTp": "string",
- "Dept": "string",
- "SubDept": "string",
- "StrtNm": "string",
- "BldgNb": "string",
- "BldgNm": "string",
- "Flr": "string",
- "PstBx": "string",
- "Room": "string",
- "PstCd": "string",
- "TwnNm": "string",
- "TwnLctnNm": "string",
- "DstrctNm": "string",
- "CtrySubDvsn": "string",
- "Ctry": "st",
- "AdrLine": [
- "string"
]
}, - "Othr": {
- "Id": "string",
- "SchmeNm": "stri",
- "Issr": "string"
}
}, - "BrnchId": {
- "Id": "string",
- "LEI": "stringstringstringst",
- "Nm": "string",
- "PstlAdr": {
- "AdrTp": "string",
- "Dept": "string",
- "SubDept": "string",
- "StrtNm": "string",
- "BldgNb": "string",
- "BldgNm": "string",
- "Flr": "string",
- "PstBx": "string",
- "Room": "string",
- "PstCd": "string",
- "TwnNm": "string",
- "TwnLctnNm": "string",
- "DstrctNm": "string",
- "CtrySubDvsn": "string",
- "Ctry": "st",
- "AdrLine": [
- "string"
]
}
}
}, - "ThrdRmbrsmntAgtAcct": {
- "Id": "string",
- "Tp": "stri",
- "Ccy": "str",
- "Nm": "string",
- "Prxy": {
- "Tp": "stri",
- "Id": "string"
}
}
}, - "InstgAgt": {
- "FinInstnId": {
- "BICFI": "stringst",
- "ClrSysMmbId": {
- "ClrSysId": "strin",
- "MmbId": "string"
}, - "LEI": "stringstringstringst",
- "Nm": "string",
- "PstlAdr": {
- "AdrTp": "string",
- "Dept": "string",
- "SubDept": "string",
- "StrtNm": "string",
- "BldgNb": "string",
- "BldgNm": "string",
- "Flr": "string",
- "PstBx": "string",
- "Room": "string",
- "PstCd": "string",
- "TwnNm": "string",
- "TwnLctnNm": "string",
- "DstrctNm": "string",
- "CtrySubDvsn": "string",
- "Ctry": "st",
- "AdrLine": [
- "string"
]
}, - "Othr": {
- "Id": "string",
- "SchmeNm": "stri",
- "Issr": "string"
}
}, - "BrnchId": {
- "Id": "string",
- "LEI": "stringstringstringst",
- "Nm": "string",
- "PstlAdr": {
- "AdrTp": "string",
- "Dept": "string",
- "SubDept": "string",
- "StrtNm": "string",
- "BldgNb": "string",
- "BldgNm": "string",
- "Flr": "string",
- "PstBx": "string",
- "Room": "string",
- "PstCd": "string",
- "TwnNm": "string",
- "TwnLctnNm": "string",
- "DstrctNm": "string",
- "CtrySubDvsn": "string",
- "Ctry": "st",
- "AdrLine": [
- "string"
]
}
}
}, - "InstdAgt": {
- "FinInstnId": {
- "BICFI": "stringst",
- "ClrSysMmbId": {
- "ClrSysId": "strin",
- "MmbId": "string"
}, - "LEI": "stringstringstringst",
- "Nm": "string",
- "PstlAdr": {
- "AdrTp": "string",
- "Dept": "string",
- "SubDept": "string",
- "StrtNm": "string",
- "BldgNb": "string",
- "BldgNm": "string",
- "Flr": "string",
- "PstBx": "string",
- "Room": "string",
- "PstCd": "string",
- "TwnNm": "string",
- "TwnLctnNm": "string",
- "DstrctNm": "string",
- "CtrySubDvsn": "string",
- "Ctry": "st",
- "AdrLine": [
- "string"
]
}, - "Othr": {
- "Id": "string",
- "SchmeNm": "stri",
- "Issr": "string"
}
}, - "BrnchId": {
- "Id": "string",
- "LEI": "stringstringstringst",
- "Nm": "string",
- "PstlAdr": {
- "AdrTp": "string",
- "Dept": "string",
- "SubDept": "string",
- "StrtNm": "string",
- "BldgNb": "string",
- "BldgNm": "string",
- "Flr": "string",
- "PstBx": "string",
- "Room": "string",
- "PstCd": "string",
- "TwnNm": "string",
- "TwnLctnNm": "string",
- "DstrctNm": "string",
- "CtrySubDvsn": "string",
- "Ctry": "st",
- "AdrLine": [
- "string"
]
}
}
}
}, - "CdtTrfTxInf": [
- {
- "PmtId": {
- "InstrId": "string",
- "EndToEndId": "string",
- "TxId": "string",
- "UETR": "string",
- "ClrSysRef": "string"
}, - "PmtTpInf": {
- "InstrPrty": "HIGH",
- "ClrChanl": "RTGS",
- "SvcLvl": [
- "stri"
], - "LclInstrm": "string",
- "CtgyPurp": "stri"
}, - "IntrBkSttlmAmt": {
- "Value": 0,
- "Ccy": "str"
}, - "IntrBkSttlmDt": "string",
- "SttlmPrty": "URGT",
- "AccptncDtTm": "string",
- "InstdAmt": {
- "Ccy": "str",
- "value": 0
}, - "ChrgBr": "SLEV",
- "IntrmyAgt1": {
- "FinInstnId": {
- "BICFI": "stringst",
- "ClrSysMmbId": {
- "ClrSysId": "strin",
- "MmbId": "string"
}, - "LEI": "stringstringstringst",
- "Nm": "string",
- "PstlAdr": {
- "AdrTp": "string",
- "Dept": "string",
- "SubDept": "string",
- "StrtNm": "string",
- "BldgNb": "string",
- "BldgNm": "string",
- "Flr": "string",
- "PstBx": "string",
- "Room": "string",
- "PstCd": "string",
- "TwnNm": "string",
- "TwnLctnNm": "string",
- "DstrctNm": "string",
- "CtrySubDvsn": "string",
- "Ctry": "st",
- "AdrLine": [
- "string"
]
}, - "Othr": {
- "Id": "string",
- "SchmeNm": "stri",
- "Issr": "string"
}
}, - "BrnchId": {
- "Id": "string",
- "LEI": "stringstringstringst",
- "Nm": "string",
- "PstlAdr": {
- "AdrTp": "string",
- "Dept": "string",
- "SubDept": "string",
- "StrtNm": "string",
- "BldgNb": "string",
- "BldgNm": "string",
- "Flr": "string",
- "PstBx": "string",
- "Room": "string",
- "PstCd": "string",
- "TwnNm": "string",
- "TwnLctnNm": "string",
- "DstrctNm": "string",
- "CtrySubDvsn": "string",
- "Ctry": "st",
- "AdrLine": [
- "string"
]
}
}
}, - "IntrmyAgt1Acct": {
- "Id": "string",
- "Tp": "stri",
- "Ccy": "str",
- "Nm": "string",
- "Prxy": {
- "Tp": "stri",
- "Id": "string"
}
}, - "UltmtDbtr": {
- "Nm": "string",
- "PstlAdr": {
- "AdrTp": "string",
- "Dept": "string",
- "SubDept": "string",
- "StrtNm": "string",
- "BldgNb": "string",
- "BldgNm": "string",
- "Flr": "string",
- "PstBx": "string",
- "Room": "string",
- "PstCd": "string",
- "TwnNm": "string",
- "TwnLctnNm": "string",
- "DstrctNm": "string",
- "CtrySubDvsn": "string",
- "Ctry": "st",
- "AdrLine": [
- "string"
]
}, - "Id": {
- "AnyBIC": "string",
- "LEI": "stringstringstringst",
- "Othr": [
- {
- "Id": "string",
- "SchmeNm": "stri",
- "Issr": "string"
}
]
}, - "CtryOfRes": "st",
- "CtctDtls": {
- "NmPrfx": "DOCT",
- "Nm": "string",
- "PhneNb": "string",
- "MobNb": "string",
- "FaxNb": "string",
- "EmailAdr": "string",
- "EmailPurp": "string",
- "JobTitl": "string",
- "Rspnsblty": "string",
- "Dept": "string",
- "Othr": [
- {
- "ChanlTp": "stri",
- "Id": "string"
}
], - "PrefrdMtd": "string"
}
}, - "InitgPty": {
- "Nm": "string",
- "PstlAdr": {
- "AdrTp": "string",
- "Dept": "string",
- "SubDept": "string",
- "StrtNm": "string",
- "BldgNb": "string",
- "BldgNm": "string",
- "Flr": "string",
- "PstBx": "string",
- "Room": "string",
- "PstCd": "string",
- "TwnNm": "string",
- "TwnLctnNm": "string",
- "DstrctNm": "string",
- "CtrySubDvsn": "string",
- "Ctry": "st",
- "AdrLine": [
- "string"
]
}, - "Id": {
- "AnyBIC": "string",
- "LEI": "stringstringstringst",
- "Othr": [
- {
- "Id": "string",
- "SchmeNm": "stri",
- "Issr": "string"
}
]
}, - "CtryOfRes": "st",
- "CtctDtls": {
- "NmPrfx": "DOCT",
- "Nm": "string",
- "PhneNb": "string",
- "MobNb": "string",
- "FaxNb": "string",
- "EmailAdr": "string",
- "EmailPurp": "string",
- "JobTitl": "string",
- "Rspnsblty": "string",
- "Dept": "string",
- "Othr": [
- {
- "ChanlTp": "stri",
- "Id": "string"
}
], - "PrefrdMtd": "string"
}
}, - "Dbtr": {
- "Nm": "string",
- "PstlAdr": {
- "AdrTp": "string",
- "Dept": "string",
- "SubDept": "string",
- "StrtNm": "string",
- "BldgNb": "string",
- "BldgNm": "string",
- "Flr": "string",
- "PstBx": "string",
- "Room": "string",
- "PstCd": "string",
- "TwnNm": "string",
- "TwnLctnNm": "string",
- "DstrctNm": "string",
- "CtrySubDvsn": "string",
- "Ctry": "st",
- "AdrLine": [
- "string"
]
}, - "Id": {
- "AnyBIC": "string",
- "LEI": "stringstringstringst",
- "Othr": [
- {
- "Id": "string",
- "SchmeNm": "stri",
- "Issr": "string"
}
]
}, - "CtryOfRes": "st",
- "CtctDtls": {
- "NmPrfx": "DOCT",
- "Nm": "string",
- "PhneNb": "string",
- "MobNb": "string",
- "FaxNb": "string",
- "EmailAdr": "string",
- "EmailPurp": "string",
- "JobTitl": "string",
- "Rspnsblty": "string",
- "Dept": "string",
- "Othr": [
- {
- "ChanlTp": "stri",
- "Id": "string"
}
], - "PrefrdMtd": "string"
}
}, - "DbtrAcct": {
- "Id": "string",
- "Tp": "stri",
- "Ccy": "str",
- "Nm": "string",
- "Prxy": {
- "Tp": "stri",
- "Id": "string"
}
}, - "DbtrAgt": {
- "FinInstnId": {
- "BICFI": "stringst",
- "ClrSysMmbId": {
- "ClrSysId": "strin",
- "MmbId": "string"
}, - "LEI": "stringstringstringst",
- "Nm": "string",
- "PstlAdr": {
- "AdrTp": "string",
- "Dept": "string",
- "SubDept": "string",
- "StrtNm": "string",
- "BldgNb": "string",
- "BldgNm": "string",
- "Flr": "string",
- "PstBx": "string",
- "Room": "string",
- "PstCd": "string",
- "TwnNm": "string",
- "TwnLctnNm": "string",
- "DstrctNm": "string",
- "CtrySubDvsn": "string",
- "Ctry": "st",
- "AdrLine": [
- "string"
]
}, - "Othr": {
- "Id": "string",
- "SchmeNm": "stri",
- "Issr": "string"
}
}, - "BrnchId": {
- "Id": "string",
- "LEI": "stringstringstringst",
- "Nm": "string",
- "PstlAdr": {
- "AdrTp": "string",
- "Dept": "string",
- "SubDept": "string",
- "StrtNm": "string",
- "BldgNb": "string",
- "BldgNm": "string",
- "Flr": "string",
- "PstBx": "string",
- "Room": "string",
- "PstCd": "string",
- "TwnNm": "string",
- "TwnLctnNm": "string",
- "DstrctNm": "string",
- "CtrySubDvsn": "string",
- "Ctry": "st",
- "AdrLine": [
- "string"
]
}
}
}, - "CdtrAgt": {
- "FinInstnId": {
- "BICFI": "stringst",
- "ClrSysMmbId": {
- "ClrSysId": "strin",
- "MmbId": "string"
}, - "LEI": "stringstringstringst",
- "Nm": "string",
- "PstlAdr": {
- "AdrTp": "string",
- "Dept": "string",
- "SubDept": "string",
- "StrtNm": "string",
- "BldgNb": "string",
- "BldgNm": "string",
- "Flr": "string",
- "PstBx": "string",
- "Room": "string",
- "PstCd": "string",
- "TwnNm": "string",
- "TwnLctnNm": "string",
- "DstrctNm": "string",
- "CtrySubDvsn": "string",
- "Ctry": "st",
- "AdrLine": [
- "string"
]
}, - "Othr": {
- "Id": "string",
- "SchmeNm": "stri",
- "Issr": "string"
}
}, - "BrnchId": {
- "Id": "string",
- "LEI": "stringstringstringst",
- "Nm": "string",
- "PstlAdr": {
- "AdrTp": "string",
- "Dept": "string",
- "SubDept": "string",
- "StrtNm": "string",
- "BldgNb": "string",
- "BldgNm": "string",
- "Flr": "string",
- "PstBx": "string",
- "Room": "string",
- "PstCd": "string",
- "TwnNm": "string",
- "TwnLctnNm": "string",
- "DstrctNm": "string",
- "CtrySubDvsn": "string",
- "Ctry": "st",
- "AdrLine": [
- "string"
]
}
}
}, - "Cdtr": {
- "Nm": "string",
- "PstlAdr": {
- "AdrTp": "string",
- "Dept": "string",
- "SubDept": "string",
- "StrtNm": "string",
- "BldgNb": "string",
- "BldgNm": "string",
- "Flr": "string",
- "PstBx": "string",
- "Room": "string",
- "PstCd": "string",
- "TwnNm": "string",
- "TwnLctnNm": "string",
- "DstrctNm": "string",
- "CtrySubDvsn": "string",
- "Ctry": "st",
- "AdrLine": [
- "string"
]
}, - "Id": {
- "AnyBIC": "string",
- "LEI": "stringstringstringst",
- "Othr": [
- {
- "Id": "string",
- "SchmeNm": "stri",
- "Issr": "string"
}
]
}, - "CtryOfRes": "st",
- "CtctDtls": {
- "NmPrfx": "DOCT",
- "Nm": "string",
- "PhneNb": "string",
- "MobNb": "string",
- "FaxNb": "string",
- "EmailAdr": "string",
- "EmailPurp": "string",
- "JobTitl": "string",
- "Rspnsblty": "string",
- "Dept": "string",
- "Othr": [
- {
- "ChanlTp": "stri",
- "Id": "string"
}
], - "PrefrdMtd": "string"
}
}, - "CdtrAcct": {
- "Id": "string",
- "Tp": "stri",
- "Ccy": "str",
- "Nm": "string",
- "Prxy": {
- "Tp": "stri",
- "Id": "string"
}
}, - "UltmtCdtr": {
- "Nm": "string",
- "PstlAdr": {
- "AdrTp": "string",
- "Dept": "string",
- "SubDept": "string",
- "StrtNm": "string",
- "BldgNb": "string",
- "BldgNm": "string",
- "Flr": "string",
- "PstBx": "string",
- "Room": "string",
- "PstCd": "string",
- "TwnNm": "string",
- "TwnLctnNm": "string",
- "DstrctNm": "string",
- "CtrySubDvsn": "string",
- "Ctry": "st",
- "AdrLine": [
- "string"
]
}, - "Id": {
- "AnyBIC": "string",
- "LEI": "stringstringstringst",
- "Othr": [
- {
- "Id": "string",
- "SchmeNm": "stri",
- "Issr": "string"
}
]
}, - "CtryOfRes": "st",
- "CtctDtls": {
- "NmPrfx": "DOCT",
- "Nm": "string",
- "PhneNb": "string",
- "MobNb": "string",
- "FaxNb": "string",
- "EmailAdr": "string",
- "EmailPurp": "string",
- "JobTitl": "string",
- "Rspnsblty": "string",
- "Dept": "string",
- "Othr": [
- {
- "ChanlTp": "stri",
- "Id": "string"
}
], - "PrefrdMtd": "string"
}
}, - "InstrForCdtrAgt": [
- {
- "Cd": "CHQB",
- "InstrInf": "string"
}
], - "Purp": "stri",
- "RltdRmtInf": [
- {
- "RmtId": "string",
- "RmtLctnDtls": [
- {
- "Mtd": "FAXI",
- "ElctrncAdr": "string",
- "PstlAdr": {
- "Nm": "string",
- "Adr": {
- "AdrTp": "string",
- "Dept": "string",
- "SubDept": "string",
- "StrtNm": "string",
- "BldgNb": "string",
- "BldgNm": "string",
- "Flr": "string",
- "PstBx": "string",
- "Room": "string",
- "PstCd": "string",
- "TwnNm": "string",
- "TwnLctnNm": "string",
- "DstrctNm": "string",
- "CtrySubDvsn": "string",
- "Ctry": "st",
- "AdrLine": [
- "string"
]
}
}
}
]
}
], - "RmtInf": {
- "Ustrd": [
- "string"
], - "Strd": [
- {
- "RfrdDocInf": [
- {
- "Tp": {
- "CdOrPrtry": "MSIN",
- "Issr": "string"
}, - "Nb": "string",
- "RltdDt": "string",
- "LineDtls": [
- {
- "Id": [
- {
- "Tp": {
- "CdOrPrtry": "stri",
- "Issr": "string"
}, - "Nb": "string",
- "RltdDt": "string"
}
], - "Desc": "string",
- "Amt": {
- "DuePyblAmt": {
- "Ccy": "str",
- "value": 0
}, - "DscntApldAmt": [
- {
- "Tp": "stri",
- "Amt": {
- "Ccy": "str",
- "value": 0
}
}
], - "CdtNoteAmt": {
- "Ccy": "str",
- "value": 0
}, - "TaxAmt": [
- {
- "Tp": "stri",
- "Amt": {
- "Ccy": "str",
- "value": 0
}
}
], - "AdjstmntAmtAndRsn": [
- {
- "Amt": {
- "Ccy": "str",
- "value": 0
}, - "CdtDbtInd": "CRDT",
- "Rsn": "stri",
- "AddtlInf": "string"
}
], - "RmtdAmt": {
- "Ccy": "str",
- "value": 0
}
}
}
]
}
], - "RfrdDocAmt": {
- "DuePyblAmt": {
- "Ccy": "str",
- "value": 0
}, - "DscntApldAmt": [
- {
- "Tp": "stri",
- "Amt": {
- "Ccy": "str",
- "value": 0
}
}
], - "CdtNoteAmt": {
- "Ccy": "str",
- "value": 0
}, - "TaxAmt": [
- {
- "Tp": "stri",
- "Amt": {
- "Ccy": "str",
- "value": 0
}
}
], - "AdjstmntAmtAndRsn": [
- {
- "Amt": {
- "Ccy": "str",
- "value": 0
}, - "CdtDbtInd": "CRDT",
- "Rsn": "stri",
- "AddtlInf": "string"
}
], - "RmtdAmt": {
- "Ccy": "str",
- "value": 0
}
}, - "CdtrRefInf": {
- "Tp": {
- "CdOrPrtry": "RADM",
- "Issr": "string"
}, - "Ref": "string"
}, - "Invcr": {
- "Nm": "string",
- "PstlAdr": {
- "AdrTp": "string",
- "Dept": "string",
- "SubDept": "string",
- "StrtNm": "string",
- "BldgNb": "string",
- "BldgNm": "string",
- "Flr": "string",
- "PstBx": "string",
- "Room": "string",
- "PstCd": "string",
- "TwnNm": "string",
- "TwnLctnNm": "string",
- "DstrctNm": "string",
- "CtrySubDvsn": "string",
- "Ctry": "st",
- "AdrLine": [
- "string"
]
}, - "Id": {
- "AnyBIC": "string",
- "LEI": "stringstringstringst",
- "Othr": [
- {
- "Id": "string",
- "SchmeNm": "stri",
- "Issr": "string"
}
]
}, - "CtryOfRes": "st",
- "CtctDtls": {
- "NmPrfx": "DOCT",
- "Nm": "string",
- "PhneNb": "string",
- "MobNb": "string",
- "FaxNb": "string",
- "EmailAdr": "string",
- "EmailPurp": "string",
- "JobTitl": "string",
- "Rspnsblty": "string",
- "Dept": "string",
- "Othr": [
- {
- "ChanlTp": "stri",
- "Id": "string"
}
], - "PrefrdMtd": "string"
}
}, - "Invcee": {
- "Nm": "string",
- "PstlAdr": {
- "AdrTp": "string",
- "Dept": "string",
- "SubDept": "string",
- "StrtNm": "string",
- "BldgNb": "string",
- "BldgNm": "string",
- "Flr": "string",
- "PstBx": "string",
- "Room": "string",
- "PstCd": "string",
- "TwnNm": "string",
- "TwnLctnNm": "string",
- "DstrctNm": "string",
- "CtrySubDvsn": "string",
- "Ctry": "st",
- "AdrLine": [
- "string"
]
}, - "Id": {
- "AnyBIC": "string",
- "LEI": "stringstringstringst",
- "Othr": [
- {
- "Id": "string",
- "SchmeNm": "stri",
- "Issr": "string"
}
]
}, - "CtryOfRes": "st",
- "CtctDtls": {
- "NmPrfx": "DOCT",
- "Nm": "string",
- "PhneNb": "string",
- "MobNb": "string",
- "FaxNb": "string",
- "EmailAdr": "string",
- "EmailPurp": "string",
- "JobTitl": "string",
- "Rspnsblty": "string",
- "Dept": "string",
- "Othr": [
- {
- "ChanlTp": "stri",
- "Id": "string"
}
], - "PrefrdMtd": "string"
}
}, - "TaxRmt": {
- "Cdtr": {
- "TaxId": "string",
- "RegnId": "string",
- "TaxTp": "string"
}, - "Dbtr": {
- "TaxId": "string",
- "RegnId": "string",
- "TaxTp": "string",
- "Authstn": {
- "Titl": "string",
- "Nm": "string"
}
}, - "UltmtDbtr": {
- "TaxId": "string",
- "RegnId": "string",
- "TaxTp": "string",
- "Authstn": {
- "Titl": "string",
- "Nm": "string"
}
}, - "AdmstnZone": "string",
- "RefNb": "string",
- "Mtd": "string",
- "TtlTaxblBaseAmt": {
- "Ccy": "str",
- "value": 0
}, - "TtlTaxAmt": {
- "Ccy": "str",
- "value": 0
}, - "Dt": "string",
- "SeqNb": 0,
- "Rcrd": [
- {
- "Tp": "string",
- "Ctgy": "string",
- "CtgyDtls": "string",
- "DbtrSts": "string",
- "CertId": "string",
- "FrmsCd": "string",
- "Prd": {
- "Yr": "string",
- "Tp": "MM01",
- "FrToDt": {
- "FrDt": "string",
- "ToDt": "string"
}
}, - "TaxAmt": {
- "Rate": 0,
- "TaxblBaseAmt": {
- "Ccy": "str",
- "value": 0
}, - "TtlAmt": {
- "Ccy": "str",
- "value": 0
}, - "Dtls": [
- {
- "Prd": {
- "Yr": "string",
- "Tp": "MM01",
- "FrToDt": {
- "FrDt": "string",
- "ToDt": "string"
}
}, - "Amt": {
- "Ccy": "str",
- "value": 0
}
}
]
}, - "AddtlInf": "string"
}
]
}, - "GrnshmtRmt": {
- "Tp": {
- "CdOrPrtry": "stri",
- "Issr": "string"
}, - "Grnshee": {
- "Nm": "string",
- "PstlAdr": {
- "AdrTp": "string",
- "Dept": "string",
- "SubDept": "string",
- "StrtNm": "string",
- "BldgNb": "string",
- "BldgNm": "string",
- "Flr": "string",
- "PstBx": "string",
- "Room": "string",
- "PstCd": "string",
- "TwnNm": "string",
- "TwnLctnNm": "string",
- "DstrctNm": "string",
- "CtrySubDvsn": "string",
- "Ctry": "st",
- "AdrLine": [
- "string"
]
}, - "Id": {
- "AnyBIC": "string",
- "LEI": "stringstringstringst",
- "Othr": [
- {
- "Id": "string",
- "SchmeNm": "stri",
- "Issr": "string"
}
]
}, - "CtryOfRes": "st",
- "CtctDtls": {
- "NmPrfx": "DOCT",
- "Nm": "string",
- "PhneNb": "string",
- "MobNb": "string",
- "FaxNb": "string",
- "EmailAdr": "string",
- "EmailPurp": "string",
- "JobTitl": "string",
- "Rspnsblty": "string",
- "Dept": "string",
- "Othr": [
- {
- "ChanlTp": "stri",
- "Id": "string"
}
], - "PrefrdMtd": "string"
}
}, - "GrnshmtAdmstr": {
- "Nm": "string",
- "PstlAdr": {
- "AdrTp": "string",
- "Dept": "string",
- "SubDept": "string",
- "StrtNm": "string",
- "BldgNb": "string",
- "BldgNm": "string",
- "Flr": "string",
- "PstBx": "string",
- "Room": "string",
- "PstCd": "string",
- "TwnNm": "string",
- "TwnLctnNm": "string",
- "DstrctNm": "string",
- "CtrySubDvsn": "string",
- "Ctry": "st",
- "AdrLine": [
- "string"
]
}, - "Id": {
- "AnyBIC": "string",
- "LEI": "stringstringstringst",
- "Othr": [
- {
- "Id": "string",
- "SchmeNm": "stri",
- "Issr": "string"
}
]
}, - "CtryOfRes": "st",
- "CtctDtls": {
- "NmPrfx": "DOCT",
- "Nm": "string",
- "PhneNb": "string",
- "MobNb": "string",
- "FaxNb": "string",
- "EmailAdr": "string",
- "EmailPurp": "string",
- "JobTitl": "string",
- "Rspnsblty": "string",
- "Dept": "string",
- "Othr": [
- {
- "ChanlTp": "stri",
- "Id": "string"
}
], - "PrefrdMtd": "string"
}
}, - "RefNb": "string",
- "Dt": "string",
- "RmtdAmt": {
- "Ccy": "str",
- "value": 0
}, - "FmlyMdclInsrncInd": true,
- "MplyeeTermntnInd": true
}, - "AddtlRmtInf": [
- "string"
]
}
]
}
}
]
}
}
}
{- "Document": {
- "CstmrPmtStsRpt": {
- "GrpHdr": {
- "MsgId": "string",
- "CreDtTm": "string",
- "InstgAgt": {
- "FinInstnId": {
- "BICFI": "stringst",
- "ClrSysMmbId": {
- "ClrSysId": "strin",
- "MmbId": "string"
}, - "LEI": "stringstringstringst",
- "Nm": "string",
- "PstlAdr": {
- "AdrTp": "string",
- "Dept": "string",
- "SubDept": "string",
- "StrtNm": "string",
- "BldgNb": "string",
- "BldgNm": "string",
- "Flr": "string",
- "PstBx": "string",
- "Room": "string",
- "PstCd": "string",
- "TwnNm": "string",
- "TwnLctnNm": "string",
- "DstrctNm": "string",
- "CtrySubDvsn": "string",
- "Ctry": "st",
- "AdrLine": [
- "string"
]
}, - "Othr": {
- "Id": "string",
- "SchmeNm": "stri",
- "Issr": "string"
}
}, - "BrnchId": {
- "Id": "string",
- "LEI": "stringstringstringst",
- "Nm": "string",
- "PstlAdr": {
- "AdrTp": "string",
- "Dept": "string",
- "SubDept": "string",
- "StrtNm": "string",
- "BldgNb": "string",
- "BldgNm": "string",
- "Flr": "string",
- "PstBx": "string",
- "Room": "string",
- "PstCd": "string",
- "TwnNm": "string",
- "TwnLctnNm": "string",
- "DstrctNm": "string",
- "CtrySubDvsn": "string",
- "Ctry": "st",
- "AdrLine": [
- "string"
]
}
}
}, - "InstdAgt": {
- "FinInstnId": {
- "BICFI": "stringst",
- "ClrSysMmbId": {
- "ClrSysId": "strin",
- "MmbId": "string"
}, - "LEI": "stringstringstringst",
- "Nm": "string",
- "PstlAdr": {
- "AdrTp": "string",
- "Dept": "string",
- "SubDept": "string",
- "StrtNm": "string",
- "BldgNb": "string",
- "BldgNm": "string",
- "Flr": "string",
- "PstBx": "string",
- "Room": "string",
- "PstCd": "string",
- "TwnNm": "string",
- "TwnLctnNm": "string",
- "DstrctNm": "string",
- "CtrySubDvsn": "string",
- "Ctry": "st",
- "AdrLine": [
- "string"
]
}, - "Othr": {
- "Id": "string",
- "SchmeNm": "stri",
- "Issr": "string"
}
}, - "BrnchId": {
- "Id": "string",
- "LEI": "stringstringstringst",
- "Nm": "string",
- "PstlAdr": {
- "AdrTp": "string",
- "Dept": "string",
- "SubDept": "string",
- "StrtNm": "string",
- "BldgNb": "string",
- "BldgNm": "string",
- "Flr": "string",
- "PstBx": "string",
- "Room": "string",
- "PstCd": "string",
- "TwnNm": "string",
- "TwnLctnNm": "string",
- "DstrctNm": "string",
- "CtrySubDvsn": "string",
- "Ctry": "st",
- "AdrLine": [
- "string"
]
}
}
}
}, - "OrgnlGrpInfAndSts": [
- {
- "OrgnlMsgId": "string",
- "OrgnlMsgNmId": "string",
- "OrgnlCreDtTm": "string",
- "OrgnlNbOfTxs": 0,
- "OrgnlCtrlSum": 0,
- "GrpSts": "stri",
- "StsRsnInf": [
- {
- "Orgtr": {
- "Nm": "string",
- "PstlAdr": {
- "AdrTp": "string",
- "Dept": "string",
- "SubDept": "string",
- "StrtNm": "string",
- "BldgNb": "string",
- "BldgNm": "string",
- "Flr": "string",
- "PstBx": "string",
- "Room": "string",
- "PstCd": "string",
- "TwnNm": "string",
- "TwnLctnNm": "string",
- "DstrctNm": "string",
- "CtrySubDvsn": "string",
- "Ctry": "st",
- "AdrLine": [
- "string"
]
}, - "Id": {
- "AnyBIC": "string",
- "LEI": "stringstringstringst",
- "Othr": [
- {
- "Id": "string",
- "SchmeNm": "stri",
- "Issr": "string"
}
]
}, - "CtryOfRes": "st",
- "CtctDtls": {
- "NmPrfx": "DOCT",
- "Nm": "string",
- "PhneNb": "string",
- "MobNb": "string",
- "FaxNb": "string",
- "EmailAdr": "string",
- "EmailPurp": "string",
- "JobTitl": "string",
- "Rspnsblty": "string",
- "Dept": "string",
- "Othr": [
- {
- "ChanlTp": "stri",
- "Id": "string"
}
], - "PrefrdMtd": "string"
}
}, - "Rsn": "AB01",
- "AddtlInf": [
- "string"
]
}
]
}
], - "TxInfAndSts": [
- {
- "StsId": "string",
- "OrgnlGrpInf": {
- "OrgnlMsgId": "string",
- "OrgnlMsgNmId": "string",
- "OrgnlCreDtTm": "string"
}, - "OrgnlInstrId": "string",
- "OrgnlEndToEndId": "string",
- "OrgnlTxId": "string",
- "OrgnlUETR": "string",
- "TxSts": "string",
- "StsRsnInf": [
- {
- "Orgtr": {
- "Nm": "string",
- "PstlAdr": {
- "AdrTp": "string",
- "Dept": "string",
- "SubDept": "string",
- "StrtNm": "string",
- "BldgNb": "string",
- "BldgNm": "string",
- "Flr": "string",
- "PstBx": "string",
- "Room": "string",
- "PstCd": "string",
- "TwnNm": "string",
- "TwnLctnNm": "string",
- "DstrctNm": "string",
- "CtrySubDvsn": "string",
- "Ctry": "st",
- "AdrLine": [
- "string"
]
}, - "Id": {
- "AnyBIC": "string",
- "LEI": "stringstringstringst",
- "Othr": [
- {
- "Id": "string",
- "SchmeNm": "stri",
- "Issr": "string"
}
]
}, - "CtryOfRes": "st",
- "CtctDtls": {
- "NmPrfx": "DOCT",
- "Nm": "string",
- "PhneNb": "string",
- "MobNb": "string",
- "FaxNb": "string",
- "EmailAdr": "string",
- "EmailPurp": "string",
- "JobTitl": "string",
- "Rspnsblty": "string",
- "Dept": "string",
- "Othr": [
- {
- "ChanlTp": "stri",
- "Id": "string"
}
], - "PrefrdMtd": "string"
}
}, - "Rsn": "AB01",
- "AddtlInf": [
- "string"
]
}
], - "ChrgsInf": [
- {
- "Amt": {
- "Ccy": "str",
- "value": 0
}, - "Agt": {
- "FinInstnId": {
- "BICFI": "stringst",
- "ClrSysMmbId": {
- "ClrSysId": "strin",
- "MmbId": "string"
}, - "LEI": "stringstringstringst",
- "Nm": "string",
- "PstlAdr": {
- "AdrTp": "string",
- "Dept": "string",
- "SubDept": "string",
- "StrtNm": "string",
- "BldgNb": "string",
- "BldgNm": "string",
- "Flr": "string",
- "PstBx": "string",
- "Room": "string",
- "PstCd": "string",
- "TwnNm": "string",
- "TwnLctnNm": "string",
- "DstrctNm": "string",
- "CtrySubDvsn": "string",
- "Ctry": "st",
- "AdrLine": [
- "string"
]
}, - "Othr": {
- "Id": "string",
- "SchmeNm": "stri",
- "Issr": "string"
}
}, - "BrnchId": {
- "Id": "string",
- "LEI": "stringstringstringst",
- "Nm": "string",
- "PstlAdr": {
- "AdrTp": "string",
- "Dept": "string",
- "SubDept": "string",
- "StrtNm": "string",
- "BldgNb": "string",
- "BldgNm": "string",
- "Flr": "string",
- "PstBx": "string",
- "Room": "string",
- "PstCd": "string",
- "TwnNm": "string",
- "TwnLctnNm": "string",
- "DstrctNm": "string",
- "CtrySubDvsn": "string",
- "Ctry": "st",
- "AdrLine": [
- "string"
]
}
}
}
}
], - "AccptncDtTm": "string",
- "AcctSvcrRef": "string",
- "ClrSysRef": "string",
- "OrgnlTxRef": {
- "IntrBkSttlmAmt": {
- "Ccy": "str",
- "value": 0
}, - "Amt": {
- "InstdAmt": {
- "Ccy": "str",
- "value": 0
}
}, - "IntrBkSttlmDt": "string",
- "ReqdColltnDt": "string",
- "ReqdExctnDt": "string",
- "CdtrSchmeId": {
- "Nm": "string",
- "PstlAdr": {
- "AdrTp": "string",
- "Dept": "string",
- "SubDept": "string",
- "StrtNm": "string",
- "BldgNb": "string",
- "BldgNm": "string",
- "Flr": "string",
- "PstBx": "string",
- "Room": "string",
- "PstCd": "string",
- "TwnNm": "string",
- "TwnLctnNm": "string",
- "DstrctNm": "string",
- "CtrySubDvsn": "string",
- "Ctry": "st",
- "AdrLine": [
- "string"
]
}, - "Id": {
- "AnyBIC": "string",
- "LEI": "stringstringstringst",
- "Othr": [
- {
- "Id": "string",
- "SchmeNm": "stri",
- "Issr": "string"
}
]
}, - "CtryOfRes": "st",
- "CtctDtls": {
- "NmPrfx": "DOCT",
- "Nm": "string",
- "PhneNb": "string",
- "MobNb": "string",
- "FaxNb": "string",
- "EmailAdr": "string",
- "EmailPurp": "string",
- "JobTitl": "string",
- "Rspnsblty": "string",
- "Dept": "string",
- "Othr": [
- {
- "ChanlTp": "stri",
- "Id": "string"
}
], - "PrefrdMtd": "string"
}
}, - "SttlmInf": {
- "SttlmMtd": "INDA",
- "SttlmAcct": {
- "Id": "string",
- "Tp": "stri",
- "Ccy": "str",
- "Nm": "string",
- "Prxy": {
- "Tp": "stri",
- "Id": "string"
}
}, - "ClrSys": "ABE",
- "InstgRmbrsmntAgt": {
- "FinInstnId": {
- "BICFI": "stringst",
- "ClrSysMmbId": {
- "ClrSysId": "strin",
- "MmbId": "string"
}, - "LEI": "stringstringstringst",
- "Nm": "string",
- "PstlAdr": {
- "AdrTp": "string",
- "Dept": "string",
- "SubDept": "string",
- "StrtNm": "string",
- "BldgNb": "string",
- "BldgNm": "string",
- "Flr": "string",
- "PstBx": "string",
- "Room": "string",
- "PstCd": "string",
- "TwnNm": "string",
- "TwnLctnNm": "string",
- "DstrctNm": "string",
- "CtrySubDvsn": "string",
- "Ctry": "st",
- "AdrLine": [
- "string"
]
}, - "Othr": {
- "Id": "string",
- "SchmeNm": "stri",
- "Issr": "string"
}
}, - "BrnchId": {
- "Id": "string",
- "LEI": "stringstringstringst",
- "Nm": "string",
- "PstlAdr": {
- "AdrTp": "string",
- "Dept": "string",
- "SubDept": "string",
- "StrtNm": "string",
- "BldgNb": "string",
- "BldgNm": "string",
- "Flr": "string",
- "PstBx": "string",
- "Room": "string",
- "PstCd": "string",
- "TwnNm": "string",
- "TwnLctnNm": "string",
- "DstrctNm": "string",
- "CtrySubDvsn": "string",
- "Ctry": "st",
- "AdrLine": [
- "string"
]
}
}
}, - "InstgRmbrsmntAgtAcct": {
- "Id": "string",
- "Tp": "stri",
- "Ccy": "str",
- "Nm": "string",
- "Prxy": {
- "Tp": "stri",
- "Id": "string"
}
}, - "InstdRmbrsmntAgt": {
- "FinInstnId": {
- "BICFI": "stringst",
- "ClrSysMmbId": {
- "ClrSysId": "strin",
- "MmbId": "string"
}, - "LEI": "stringstringstringst",
- "Nm": "string",
- "PstlAdr": {
- "AdrTp": "string",
- "Dept": "string",
- "SubDept": "string",
- "StrtNm": "string",
- "BldgNb": "string",
- "BldgNm": "string",
- "Flr": "string",
- "PstBx": "string",
- "Room": "string",
- "PstCd": "string",
- "TwnNm": "string",
- "TwnLctnNm": "string",
- "DstrctNm": "string",
- "CtrySubDvsn": "string",
- "Ctry": "st",
- "AdrLine": [
- "string"
]
}, - "Othr": {
- "Id": "string",
- "SchmeNm": "stri",
- "Issr": "string"
}
}, - "BrnchId": {
- "Id": "string",
- "LEI": "stringstringstringst",
- "Nm": "string",
- "PstlAdr": {
- "AdrTp": "string",
- "Dept": "string",
- "SubDept": "string",
- "StrtNm": "string",
- "BldgNb": "string",
- "BldgNm": "string",
- "Flr": "string",
- "PstBx": "string",
- "Room": "string",
- "PstCd": "string",
- "TwnNm": "string",
- "TwnLctnNm": "string",
- "DstrctNm": "string",
- "CtrySubDvsn": "string",
- "Ctry": "st",
- "AdrLine": [
- "string"
]
}
}
}, - "InstdRmbrsmntAgtAcct": {
- "Id": "string",
- "Tp": "stri",
- "Ccy": "str",
- "Nm": "string",
- "Prxy": {
- "Tp": "stri",
- "Id": "string"
}
}, - "ThrdRmbrsmntAgt": {
- "FinInstnId": {
- "BICFI": "stringst",
- "ClrSysMmbId": {
- "ClrSysId": "strin",
- "MmbId": "string"
}, - "LEI": "stringstringstringst",
- "Nm": "string",
- "PstlAdr": {
- "AdrTp": "string",
- "Dept": "string",
- "SubDept": "string",
- "StrtNm": "string",
- "BldgNb": "string",
- "BldgNm": "string",
- "Flr": "string",
- "PstBx": "string",
- "Room": "string",
- "PstCd": "string",
- "TwnNm": "string",
- "TwnLctnNm": "string",
- "DstrctNm": "string",
- "CtrySubDvsn": "string",
- "Ctry": "st",
- "AdrLine": [
- "string"
]
}, - "Othr": {
- "Id": "string",
- "SchmeNm": "stri",
- "Issr": "string"
}
}, - "BrnchId": {
- "Id": "string",
- "LEI": "stringstringstringst",
- "Nm": "string",
- "PstlAdr": {
- "AdrTp": "string",
- "Dept": "string",
- "SubDept": "string",
- "StrtNm": "string",
- "BldgNb": "string",
- "BldgNm": "string",
- "Flr": "string",
- "PstBx": "string",
- "Room": "string",
- "PstCd": "string",
- "TwnNm": "string",
- "TwnLctnNm": "string",
- "DstrctNm": "string",
- "CtrySubDvsn": "string",
- "Ctry": "st",
- "AdrLine": [
- "string"
]
}
}
}, - "ThrdRmbrsmntAgtAcct": {
- "Id": "string",
- "Tp": "stri",
- "Ccy": "str",
- "Nm": "string",
- "Prxy": {
- "Tp": "stri",
- "Id": "string"
}
}
}, - "PmtTpInf": {
- "InstrPrty": "HIGH",
- "ClrChanl": "RTGS",
- "SvcLvl": [
- "stri"
], - "LclInstrm": "string",
- "SeqTp": "FRST",
- "CtgyPurp": "stri"
}, - "PmtMtd": "CHK",
- "MndtRltdInf": {
- "MndtId": "string",
- "DtOfSgntr": "string",
- "AmdmntInd": true,
- "AmdmntInfDtls": {
- "orgnlMndtId": "string",
- "orgnlCdtrSchmeId": {
- "Nm": "string",
- "PstlAdr": {
- "AdrTp": "string",
- "Dept": "string",
- "SubDept": "string",
- "StrtNm": "string",
- "BldgNb": "string",
- "BldgNm": "string",
- "Flr": "string",
- "PstBx": "string",
- "Room": "string",
- "PstCd": "string",
- "TwnNm": "string",
- "TwnLctnNm": "string",
- "DstrctNm": "string",
- "CtrySubDvsn": "string",
- "Ctry": "st",
- "AdrLine": [
- "string"
]
}, - "Id": {
- "AnyBIC": "string",
- "LEI": "stringstringstringst",
- "Othr": [
- {
- "Id": "string",
- "SchmeNm": "stri",
- "Issr": "string"
}
]
}, - "CtryOfRes": "st",
- "CtctDtls": {
- "NmPrfx": "DOCT",
- "Nm": "string",
- "PhneNb": "string",
- "MobNb": "string",
- "FaxNb": "string",
- "EmailAdr": "string",
- "EmailPurp": "string",
- "JobTitl": "string",
- "Rspnsblty": "string",
- "Dept": "string",
- "Othr": [
- {
- "ChanlTp": "stri",
- "Id": "string"
}
], - "PrefrdMtd": "string"
}
}, - "orgnlCdtrAgt": {
- "FinInstnId": {
- "BICFI": "stringst",
- "ClrSysMmbId": {
- "ClrSysId": "strin",
- "MmbId": "string"
}, - "LEI": "stringstringstringst",
- "Nm": "string",
- "PstlAdr": {
- "AdrTp": "string",
- "Dept": "string",
- "SubDept": "string",
- "StrtNm": "string",
- "BldgNb": "string",
- "BldgNm": "string",
- "Flr": "string",
- "PstBx": "string",
- "Room": "string",
- "PstCd": "string",
- "TwnNm": "string",
- "TwnLctnNm": "string",
- "DstrctNm": "string",
- "CtrySubDvsn": "string",
- "Ctry": "st",
- "AdrLine": [
- "string"
]
}, - "Othr": {
- "Id": "string",
- "SchmeNm": "stri",
- "Issr": "string"
}
}, - "BrnchId": {
- "Id": "string",
- "LEI": "stringstringstringst",
- "Nm": "string",
- "PstlAdr": {
- "AdrTp": "string",
- "Dept": "string",
- "SubDept": "string",
- "StrtNm": "string",
- "BldgNb": "string",
- "BldgNm": "string",
- "Flr": "string",
- "PstBx": "string",
- "Room": "string",
- "PstCd": "string",
- "TwnNm": "string",
- "TwnLctnNm": "string",
- "DstrctNm": "string",
- "CtrySubDvsn": "string",
- "Ctry": "st",
- "AdrLine": [
- "string"
]
}
}
}, - "orgnlCdtrAgtAcct": {
- "Id": "string",
- "Tp": "stri",
- "Ccy": "str",
- "Nm": "string",
- "Prxy": {
- "Tp": "stri",
- "Id": "string"
}
}, - "orgnlDbtr": {
- "Nm": "string",
- "PstlAdr": {
- "AdrTp": "string",
- "Dept": "string",
- "SubDept": "string",
- "StrtNm": "string",
- "BldgNb": "string",
- "BldgNm": "string",
- "Flr": "string",
- "PstBx": "string",
- "Room": "string",
- "PstCd": "string",
- "TwnNm": "string",
- "TwnLctnNm": "string",
- "DstrctNm": "string",
- "CtrySubDvsn": "string",
- "Ctry": "st",
- "AdrLine": [
- "string"
]
}, - "Id": {
- "AnyBIC": "string",
- "LEI": "stringstringstringst",
- "Othr": [
- {
- "Id": "string",
- "SchmeNm": "stri",
- "Issr": "string"
}
]
}, - "CtryOfRes": "st",
- "CtctDtls": {
- "NmPrfx": "DOCT",
- "Nm": "string",
- "PhneNb": "string",
- "MobNb": "string",
- "FaxNb": "string",
- "EmailAdr": "string",
- "EmailPurp": "string",
- "JobTitl": "string",
- "Rspnsblty": "string",
- "Dept": "string",
- "Othr": [
- {
- "ChanlTp": "stri",
- "Id": "string"
}
], - "PrefrdMtd": "string"
}
}, - "orgnlDbtrAcct": {
- "Id": "string",
- "Tp": "stri",
- "Ccy": "str",
- "Nm": "string",
- "Prxy": {
- "Tp": "stri",
- "Id": "string"
}
}, - "orgnlDbtrAgt": {
- "FinInstnId": {
- "BICFI": "stringst",
- "ClrSysMmbId": {
- "ClrSysId": "strin",
- "MmbId": "string"
}, - "LEI": "stringstringstringst",
- "Nm": "string",
- "PstlAdr": {
- "AdrTp": "string",
- "Dept": "string",
- "SubDept": "string",
- "StrtNm": "string",
- "BldgNb": "string",
- "BldgNm": "string",
- "Flr": "string",
- "PstBx": "string",
- "Room": "string",
- "PstCd": "string",
- "TwnNm": "string",
- "TwnLctnNm": "string",
- "DstrctNm": "string",
- "CtrySubDvsn": "string",
- "Ctry": "st",
- "AdrLine": [
- "string"
]
}, - "Othr": {
- "Id": "string",
- "SchmeNm": "stri",
- "Issr": "string"
}
}, - "BrnchId": {
- "Id": "string",
- "LEI": "stringstringstringst",
- "Nm": "string",
- "PstlAdr": {
- "AdrTp": "string",
- "Dept": "string",
- "SubDept": "string",
- "StrtNm": "string",
- "BldgNb": "string",
- "BldgNm": "string",
- "Flr": "string",
- "PstBx": "string",
- "Room": "string",
- "PstCd": "string",
- "TwnNm": "string",
- "TwnLctnNm": "string",
- "DstrctNm": "string",
- "CtrySubDvsn": "string",
- "Ctry": "st",
- "AdrLine": [
- "string"
]
}
}
}, - "orgnlDbtrAgtAcct": {
- "Id": "string",
- "Tp": "stri",
- "Ccy": "str",
- "Nm": "string",
- "Prxy": {
- "Tp": "stri",
- "Id": "string"
}
}, - "orgnlFnlColltnDt": "2024-05-27",
- "orgnlFrqcy": {
- "Tp": "YEAR",
- "Prd": {
- "Tp": "YEAR",
- "CntPerPrd": 0
}, - "PtInTm": {
- "Tp": "YEAR",
- "PtInTm": "string"
}
}, - "orgnlRsn": "string",
- "orgnlTrckgDays": "string"
}, - "ElctrncSgntr": "string",
- "FrstColltnDt": "string",
- "FnlColltnDt": "string",
- "Frqcy": {
- "Tp": "YEAR",
- "Prd": {
- "Tp": "YEAR",
- "CntPerPrd": 0
}, - "PtInTm": {
- "Tp": "YEAR",
- "PtInTm": "string"
}
}, - "Rsn": "string",
- "TrckgDays": "st"
}, - "RmtInf": {
- "Ustrd": [
- "string"
], - "Strd": [
- {
- "RfrdDocInf": [
- {
- "Tp": {
- "CdOrPrtry": "MSIN",
- "Issr": "string"
}, - "Nb": "string",
- "RltdDt": "string",
- "LineDtls": [
- {
- "Id": [
- {
- "Tp": {
- "CdOrPrtry": "stri",
- "Issr": "string"
}, - "Nb": "string",
- "RltdDt": "string"
}
], - "Desc": "string",
- "Amt": {
- "DuePyblAmt": {
- "Ccy": "str",
- "value": 0
}, - "DscntApldAmt": [
- {
- "Tp": "stri",
- "Amt": {
- "Ccy": "str",
- "value": 0
}
}
], - "CdtNoteAmt": {
- "Ccy": "str",
- "value": 0
}, - "TaxAmt": [
- {
- "Tp": "stri",
- "Amt": {
- "Ccy": "str",
- "value": 0
}
}
], - "AdjstmntAmtAndRsn": [
- {
- "Amt": {
- "Ccy": "str",
- "value": 0
}, - "CdtDbtInd": "CRDT",
- "Rsn": "stri",
- "AddtlInf": "string"
}
], - "RmtdAmt": {
- "Ccy": "str",
- "value": 0
}
}
}
]
}
], - "RfrdDocAmt": {
- "DuePyblAmt": {
- "Ccy": "str",
- "value": 0
}, - "DscntApldAmt": [
- {
- "Tp": "stri",
- "Amt": {
- "Ccy": "str",
- "value": 0
}
}
], - "CdtNoteAmt": {
- "Ccy": "str",
- "value": 0
}, - "TaxAmt": [
- {
- "Tp": "stri",
- "Amt": {
- "Ccy": "str",
- "value": 0
}
}
], - "AdjstmntAmtAndRsn": [
- {
- "Amt": {
- "Ccy": "str",
- "value": 0
}, - "CdtDbtInd": "CRDT",
- "Rsn": "stri",
- "AddtlInf": "string"
}
], - "RmtdAmt": {
- "Ccy": "str",
- "value": 0
}
}, - "CdtrRefInf": {
- "Tp": {
- "CdOrPrtry": "RADM",
- "Issr": "string"
}, - "Ref": "string"
}, - "Invcr": {
- "Nm": "string",
- "PstlAdr": {
- "AdrTp": "string",
- "Dept": "string",
- "SubDept": "string",
- "StrtNm": "string",
- "BldgNb": "string",
- "BldgNm": "string",
- "Flr": "string",
- "PstBx": "string",
- "Room": "string",
- "PstCd": "string",
- "TwnNm": "string",
- "TwnLctnNm": "string",
- "DstrctNm": "string",
- "CtrySubDvsn": "string",
- "Ctry": "st",
- "AdrLine": [
- "string"
]
}, - "Id": {
- "AnyBIC": "string",
- "LEI": "stringstringstringst",
- "Othr": [
- {
- "Id": "string",
- "SchmeNm": "stri",
- "Issr": "string"
}
]
}, - "CtryOfRes": "st",
- "CtctDtls": {
- "NmPrfx": "DOCT",
- "Nm": "string",
- "PhneNb": "string",
- "MobNb": "string",
- "FaxNb": "string",
- "EmailAdr": "string",
- "EmailPurp": "string",
- "JobTitl": "string",
- "Rspnsblty": "string",
- "Dept": "string",
- "Othr": [
- {
- "ChanlTp": "stri",
- "Id": "string"
}
], - "PrefrdMtd": "string"
}
}, - "Invcee": {
- "Nm": "string",
- "PstlAdr": {
- "AdrTp": "string",
- "Dept": "string",
- "SubDept": "string",
- "StrtNm": "string",
- "BldgNb": "string",
- "BldgNm": "string",
- "Flr": "string",
- "PstBx": "string",
- "Room": "string",
- "PstCd": "string",
- "TwnNm": "string",
- "TwnLctnNm": "string",
- "DstrctNm": "string",
- "CtrySubDvsn": "string",
- "Ctry": "st",
- "AdrLine": [
- "string"
]
}, - "Id": {
- "AnyBIC": "string",
- "LEI": "stringstringstringst",
- "Othr": [
- {
- "Id": "string",
- "SchmeNm": "stri",
- "Issr": "string"
}
]
}, - "CtryOfRes": "st",
- "CtctDtls": {
- "NmPrfx": "DOCT",
- "Nm": "string",
- "PhneNb": "string",
- "MobNb": "string",
- "FaxNb": "string",
- "EmailAdr": "string",
- "EmailPurp": "string",
- "JobTitl": "string",
- "Rspnsblty": "string",
- "Dept": "string",
- "Othr": [
- {
- "ChanlTp": "stri",
- "Id": "string"
}
], - "PrefrdMtd": "string"
}
}, - "TaxRmt": {
- "Cdtr": {
- "TaxId": "string",
- "RegnId": "string",
- "TaxTp": "string"
}, - "Dbtr": {
- "TaxId": "string",
- "RegnId": "string",
- "TaxTp": "string",
- "Authstn": {
- "Titl": "string",
- "Nm": "string"
}
}, - "UltmtDbtr": {
- "TaxId": "string",
- "RegnId": "string",
- "TaxTp": "string",
- "Authstn": {
- "Titl": "string",
- "Nm": "string"
}
}, - "AdmstnZone": "string",
- "RefNb": "string",
- "Mtd": "string",
- "TtlTaxblBaseAmt": {
- "Ccy": "str",
- "value": 0
}, - "TtlTaxAmt": {
- "Ccy": "str",
- "value": 0
}, - "Dt": "string",
- "SeqNb": 0,
- "Rcrd": [
- {
- "Tp": "string",
- "Ctgy": "string",
- "CtgyDtls": "string",
- "DbtrSts": "string",
- "CertId": "string",
- "FrmsCd": "string",
- "Prd": {
- "Yr": "string",
- "Tp": "MM01",
- "FrToDt": {
- "FrDt": "string",
- "ToDt": "string"
}
}, - "TaxAmt": {
- "Rate": 0,
- "TaxblBaseAmt": {
- "Ccy": "str",
- "value": 0
}, - "TtlAmt": {
- "Ccy": "str",
- "value": 0
}, - "Dtls": [
- {
- "Prd": {
- "Yr": "string",
- "Tp": "MM01",
- "FrToDt": {
- "FrDt": "string",
- "ToDt": "string"
}
}, - "Amt": {
- "Ccy": "str",
- "value": 0
}
}
]
}, - "AddtlInf": "string"
}
]
}, - "GrnshmtRmt": {
- "Tp": {
- "CdOrPrtry": "stri",
- "Issr": "string"
}, - "Grnshee": {
- "Nm": "string",
- "PstlAdr": {
- "AdrTp": "string",
- "Dept": "string",
- "SubDept": "string",
- "StrtNm": "string",
- "BldgNb": "string",
- "BldgNm": "string",
- "Flr": "string",
- "PstBx": "string",
- "Room": "string",
- "PstCd": "string",
- "TwnNm": "string",
- "TwnLctnNm": "string",
- "DstrctNm": "string",
- "CtrySubDvsn": "string",
- "Ctry": "st",
- "AdrLine": [
- "string"
]
}, - "Id": {
- "AnyBIC": "string",
- "LEI": "stringstringstringst",
- "Othr": [
- {
- "Id": "string",
- "SchmeNm": "stri",
- "Issr": "string"
}
]
}, - "CtryOfRes": "st",
- "CtctDtls": {
- "NmPrfx": "DOCT",
- "Nm": "string",
- "PhneNb": "string",
- "MobNb": "string",
- "FaxNb": "string",
- "EmailAdr": "string",
- "EmailPurp": "string",
- "JobTitl": "string",
- "Rspnsblty": "string",
- "Dept": "string",
- "Othr": [
- {
- "ChanlTp": "stri",
- "Id": "string"
}
], - "PrefrdMtd": "string"
}
}, - "GrnshmtAdmstr": {
- "Nm": "string",
- "PstlAdr": {
- "AdrTp": "string",
- "Dept": "string",
- "SubDept": "string",
- "StrtNm": "string",
- "BldgNb": "string",
- "BldgNm": "string",
- "Flr": "string",
- "PstBx": "string",
- "Room": "string",
- "PstCd": "string",
- "TwnNm": "string",
- "TwnLctnNm": "string",
- "DstrctNm": "string",
- "CtrySubDvsn": "string",
- "Ctry": "st",
- "AdrLine": [
- "string"
]
}, - "Id": {
- "AnyBIC": "string",
- "LEI": "stringstringstringst",
- "Othr": [
- {
- "Id": "string",
- "SchmeNm": "stri",
- "Issr": "string"
}
]
}, - "CtryOfRes": "st",
- "CtctDtls": {
- "NmPrfx": "DOCT",
- "Nm": "string",
- "PhneNb": "string",
- "MobNb": "string",
- "FaxNb": "string",
- "EmailAdr": "string",
- "EmailPurp": "string",
- "JobTitl": "string",
- "Rspnsblty": "string",
- "Dept": "string",
- "Othr": [
- {
- "ChanlTp": "stri",
- "Id": "string"
}
], - "PrefrdMtd": "string"
}
}, - "RefNb": "string",
- "Dt": "string",
- "RmtdAmt": {
- "Ccy": "str",
- "value": 0
}, - "FmlyMdclInsrncInd": true,
- "MplyeeTermntnInd": true
}, - "AddtlRmtInf": [
- "string"
]
}
]
}, - "UltmtDbtr": {
- "Nm": "string",
- "PstlAdr": {
- "AdrTp": "string",
- "Dept": "string",
- "SubDept": "string",
- "StrtNm": "string",
- "BldgNb": "string",
- "BldgNm": "string",
- "Flr": "string",
- "PstBx": "string",
- "Room": "string",
- "PstCd": "string",
- "TwnNm": "string",
- "TwnLctnNm": "string",
- "DstrctNm": "string",
- "CtrySubDvsn": "string",
- "Ctry": "st",
- "AdrLine": [
- "string"
]
}, - "Id": {
- "AnyBIC": "string",
- "LEI": "stringstringstringst",
- "Othr": [
- {
- "Id": "string",
- "SchmeNm": "stri",
- "Issr": "string"
}
]
}, - "CtryOfRes": "st",
- "CtctDtls": {
- "NmPrfx": "DOCT",
- "Nm": "string",
- "PhneNb": "string",
- "MobNb": "string",
- "FaxNb": "string",
- "EmailAdr": "string",
- "EmailPurp": "string",
- "JobTitl": "string",
- "Rspnsblty": "string",
- "Dept": "string",
- "Othr": [
- {
- "ChanlTp": "stri",
- "Id": "string"
}
], - "PrefrdMtd": "string"
}
}, - "Dbtr": {
- "Nm": "string",
- "PstlAdr": {
- "AdrTp": "string",
- "Dept": "string",
- "SubDept": "string",
- "StrtNm": "string",
- "BldgNb": "string",
- "BldgNm": "string",
- "Flr": "string",
- "PstBx": "string",
- "Room": "string",
- "PstCd": "string",
- "TwnNm": "string",
- "TwnLctnNm": "string",
- "DstrctNm": "string",
- "CtrySubDvsn": "string",
- "Ctry": "st",
- "AdrLine": [
- "string"
]
}, - "Id": {
- "AnyBIC": "string",
- "LEI": "stringstringstringst",
- "Othr": [
- {
- "Id": "string",
- "SchmeNm": "stri",
- "Issr": "string"
}
]
}, - "CtryOfRes": "st",
- "CtctDtls": {
- "NmPrfx": "DOCT",
- "Nm": "string",
- "PhneNb": "string",
- "MobNb": "string",
- "FaxNb": "string",
- "EmailAdr": "string",
- "EmailPurp": "string",
- "JobTitl": "string",
- "Rspnsblty": "string",
- "Dept": "string",
- "Othr": [
- {
- "ChanlTp": "stri",
- "Id": "string"
}
], - "PrefrdMtd": "string"
}
}, - "DbtrAcct": {
- "Id": "string",
- "Tp": "stri",
- "Ccy": "str",
- "Nm": "string",
- "Prxy": {
- "Tp": "stri",
- "Id": "string"
}
}, - "DbtrAgt": {
- "FinInstnId": {
- "BICFI": "stringst",
- "ClrSysMmbId": {
- "ClrSysId": "strin",
- "MmbId": "string"
}, - "LEI": "stringstringstringst",
- "Nm": "string",
- "PstlAdr": {
- "AdrTp": "string",
- "Dept": "string",
- "SubDept": "string",
- "StrtNm": "string",
- "BldgNb": "string",
- "BldgNm": "string",
- "Flr": "string",
- "PstBx": "string",
- "Room": "string",
- "PstCd": "string",
- "TwnNm": "string",
- "TwnLctnNm": "string",
- "DstrctNm": "string",
- "CtrySubDvsn": "string",
- "Ctry": "st",
- "AdrLine": [
- "string"
]
}, - "Othr": {
- "Id": "string",
- "SchmeNm": "stri",
- "Issr": "string"
}
}, - "BrnchId": {
- "Id": "string",
- "LEI": "stringstringstringst",
- "Nm": "string",
- "PstlAdr": {
- "AdrTp": "string",
- "Dept": "string",
- "SubDept": "string",
- "StrtNm": "string",
- "BldgNb": "string",
- "BldgNm": "string",
- "Flr": "string",
- "PstBx": "string",
- "Room": "string",
- "PstCd": "string",
- "TwnNm": "string",
- "TwnLctnNm": "string",
- "DstrctNm": "string",
- "CtrySubDvsn": "string",
- "Ctry": "st",
- "AdrLine": [
- "string"
]
}
}
}, - "CdtrAgt": {
- "FinInstnId": {
- "BICFI": "stringst",
- "ClrSysMmbId": {
- "ClrSysId": "strin",
- "MmbId": "string"
}, - "LEI": "stringstringstringst",
- "Nm": "string",
- "PstlAdr": {
- "AdrTp": "string",
- "Dept": "string",
- "SubDept": "string",
- "StrtNm": "string",
- "BldgNb": "string",
- "BldgNm": "string",
- "Flr": "string",
- "PstBx": "string",
- "Room": "string",
- "PstCd": "string",
- "TwnNm": "string",
- "TwnLctnNm": "string",
- "DstrctNm": "string",
- "CtrySubDvsn": "string",
- "Ctry": "st",
- "AdrLine": [
- "string"
]
}, - "Othr": {
- "Id": "string",
- "SchmeNm": "stri",
- "Issr": "string"
}
}, - "BrnchId": {
- "Id": "string",
- "LEI": "stringstringstringst",
- "Nm": "string",
- "PstlAdr": {
- "AdrTp": "string",
- "Dept": "string",
- "SubDept": "string",
- "StrtNm": "string",
- "BldgNb": "string",
- "BldgNm": "string",
- "Flr": "string",
- "PstBx": "string",
- "Room": "string",
- "PstCd": "string",
- "TwnNm": "string",
- "TwnLctnNm": "string",
- "DstrctNm": "string",
- "CtrySubDvsn": "string",
- "Ctry": "st",
- "AdrLine": [
- "string"
]
}
}
}, - "Cdtr": {
- "Nm": "string",
- "PstlAdr": {
- "AdrTp": "string",
- "Dept": "string",
- "SubDept": "string",
- "StrtNm": "string",
- "BldgNb": "string",
- "BldgNm": "string",
- "Flr": "string",
- "PstBx": "string",
- "Room": "string",
- "PstCd": "string",
- "TwnNm": "string",
- "TwnLctnNm": "string",
- "DstrctNm": "string",
- "CtrySubDvsn": "string",
- "Ctry": "st",
- "AdrLine": [
- "string"
]
}, - "Id": {
- "AnyBIC": "string",
- "LEI": "stringstringstringst",
- "Othr": [
- {
- "Id": "string",
- "SchmeNm": "stri",
- "Issr": "string"
}
]
}, - "CtryOfRes": "st",
- "CtctDtls": {
- "NmPrfx": "DOCT",
- "Nm": "string",
- "PhneNb": "string",
- "MobNb": "string",
- "FaxNb": "string",
- "EmailAdr": "string",
- "EmailPurp": "string",
- "JobTitl": "string",
- "Rspnsblty": "string",
- "Dept": "string",
- "Othr": [
- {
- "ChanlTp": "stri",
- "Id": "string"
}
], - "PrefrdMtd": "string"
}
}, - "CdtrAcct": {
- "Id": "string",
- "Tp": "stri",
- "Ccy": "str",
- "Nm": "string",
- "Prxy": {
- "Tp": "stri",
- "Id": "string"
}
}, - "UltmtCdtr": {
- "Nm": "string",
- "PstlAdr": {
- "AdrTp": "string",
- "Dept": "string",
- "SubDept": "string",
- "StrtNm": "string",
- "BldgNb": "string",
- "BldgNm": "string",
- "Flr": "string",
- "PstBx": "string",
- "Room": "string",
- "PstCd": "string",
- "TwnNm": "string",
- "TwnLctnNm": "string",
- "DstrctNm": "string",
- "CtrySubDvsn": "string",
- "Ctry": "st",
- "AdrLine": [
- "string"
]
}, - "Id": {
- "AnyBIC": "string",
- "LEI": "stringstringstringst",
- "Othr": [
- {
- "Id": "string",
- "SchmeNm": "stri",
- "Issr": "string"
}
]
}, - "CtryOfRes": "st",
- "CtctDtls": {
- "NmPrfx": "DOCT",
- "Nm": "string",
- "PhneNb": "string",
- "MobNb": "string",
- "FaxNb": "string",
- "EmailAdr": "string",
- "EmailPurp": "string",
- "JobTitl": "string",
- "Rspnsblty": "string",
- "Dept": "string",
- "Othr": [
- {
- "ChanlTp": "stri",
- "Id": "string"
}
], - "PrefrdMtd": "string"
}
}, - "purp": "string"
}
}
]
}
}
}
The AdditionalPaymentInformation
message is sent by an account servicing institution to an account owner. This message is used to send additional payment RFP information to provide additional or corrected information on a payment instruction or statement entry, to allow reconciliation. The request is processed and responds with the CaseResponse
object. When the original payment information is not located in the Payment Hub API, it returns a RejectInvestigation
in the CaseResponse object. Otherwise, it returns the NoticeOfCaseAssignment
in the CaseResponse object. Appropriate status codes are returned in the response.
Document required | object |
Success
Bad Request
System Error.
Server Error.
The CreditorPaymentActivationRequest
message is sent by the Creditor(sending party) to the Debtor (receiving party), directly or through agents, requesting for the payment RFP. It is used by a Creditor to request movement of funds from the debtor account to a creditor. The API sends the request to the desired debtor agent seeking approval for the RFP sent by the Creditor or the Creditor agent. The API responds with the appropriate status in the CreditorPaymentActivationRequestStatusReport
. Once the debtor acts on the RFP request, an event is generated with accept or reject status and the event is published to the creditor agent.
Document required | object |
Success
Bad Request
System Error.
Server Error.
Creditor agent sends a cancel RFP CustomerPaymentCancellationRequest
message to the debtor agent indicating that the RFP is no longer applicable. The Payment Hub API processes the request and responds with the CaseResponse
. The response indicates whether the Cancel RFP has been resolved or rejected in the ResolutionOfInvestigation
or RejectInvestigation
respectively with the appropriate statuses.
Document required | object |
Success
Bad Request
System Error.
Server Error.
The Request for Information or the UnableToApply
message is sent by a case creator or a case assigner to a case assignee. This message is used to initiate an investigation of a payment instruction that cannot be executed or reconciled. The request is processed and responds with the CaseResponse
object. When the original payment information is not located in the Payment Hub API, it returns a RejectInvestigation
in the CaseResponse object. Otherwise, it returns the NoticeOfCaseAssignment
in the CaseResponse object. Appropriate status codes are returned in the response.
Document required | object |
Success
Bad Request
System Error.
Server Error.
The creditor agent resolves the RROF request using the ResolutionOfInvestigation
message with the appropriate status. The request is processed and responds with the CaseResponse
object. When the original payment information is not located in the Payment Hub API, it returns a RejectInvestigation
in the CaseResponse object. Otherwise, it returns the NoticeOfCaseAssignment
in the CaseResponse object. Appropriate status codes are returned in the response.
Document required | object |
Success
Bad Request
System Error.
Server Error.
The creditor acknowledges the payment using the CustomerPaymentStatusReport
message.
Document required | object |
Success
Bad Request
System Error.
Server Error.
The Customer Direct Debit message is sent by the is sent by the initiating party or creditor agent to pull funds from debtor(s). The message may contain single or bulk debtor(s) for a creditor. The request is sent using the CustomerDirectDebitInitiation
message. This API is generally usd for ACH or ACH Sameday use-cases
Document required | object |
Success CustomerPaymentStatusReport
Bad Request
System Error.
Server Error
The Inquire Initiate Customer Cross Border Credit Transfer API is used to get the quote for the credit transfer. The request is sent using the CustomerCreditTransferInitiation
.
The API processes the request and responds with the CustomerPaymentStatusReport
which provides the appropriate status of the payment initiation request such as Accepted and Technical Validation complete(ACTC), Rejected(RJCT), etc.
Document required | object |
Success CustomerPaymentStatusReport
Bad Request
System Error.
Server Error
The Confirm Initiate Customer Cross Border Credit Transfer API is used to confirm the credit transfer with the earlier quote received. The request is sent using the CustomerPaymentStatusReport
.
The API processes the request and responds with the CustomerPaymentStatusReport
which provides the appropriate status of the payment initiation request such as accepted and settlement completed(ACCC), accepted without posting(ACWP), rejected(RJCT), etc.
Document required | object |
Success CustomerPaymentStatusReport
Bad Request
System Error.
Server Error
The Cancel Initiate Customer Cross Border Credit Transfer API is used to cancel the earlier submitted credit transfer. The request is sent using the CustomerPaymentStatusReport
.
The API processes the request and responds with the CustomerPaymentStatusReport
which provides the appropriate status of the payment initiation request such as Cancelled(ACWP), Rejected(RJCT), etc.
The cancellation for an outbound wire will be allowed when the txn is with status is ACTC/ACFC/ACPD.
Only RegE complaint (Consumer initiated) transfers are eligible for cancellation within 30 mins of confirming the transfer.
Document required | object |
Success CustomerPaymentStatusReport
Bad Request
System Error.
Server Error