get https://prod.api.getborderless.com/contact/PaymentActivity
Introduction
This endpoint allows you to see the payment activity between you and a select Contact. This includes created payments received payments, and refunds.
Data Requirements
Provide the following data requirements when sending a GET request to the Payment Activity endpoint.
Additional Header parameter:
Parameter | Required? | Description | Type |
---|---|---|---|
Client-Id | No | Unique identifier of Child Account (required only for Partner). See Authentication Page to learn more. | String |
The body of the request should contain the following property:
Parameter | Required? | Description | Type |
---|---|---|---|
handle | Yes | This is the @handle associated with a contact's account. For an internal contact it appears as @{handle}, for an external contact the format is ^{XXXXX} where X represents randomly generated alphanumeric strings. An example would be ^be39D. | String |
Note: The "Try it!" feature located on the right below the code box, does not support GET requests that contain a body. To test out this GET endpoint, please use a third-party application such as Postman.
Response Body
The response will contain the following information:
Parameter | Description | Type |
---|---|---|
paymentReferenceId | A unique number generated to identify each individual payment. | String |
createdAt | The date when the payment was created (ISO format). | String |
paymentEntryType | The type of transaction. Possible values are: CREATED_PAYMENT | RECEIVED_PAYMENT | CREATED_REFUND | RECEIVED_REFUND. | String |
paymentType | The type of payment for this particular trade. Possible values are: LOCAL | INTERNATIONAL. | String |
refundType | The type of refund, if applicable. Possible values are: FULL_REFUND | PARTIAL_REFUND. | String |
status | The current status of the payment. Possible values are: PENDING | SCHEDULED | UNCLAIMED | REQUESTED | PROCESSING | IN_TRANSIT | COMPLETE | CANCELED | DECLINED | FAILED. | String |
amount | The value of the amount of the payment in the payer's currency. | Number |
currency | The primary currency used by the payer identified by a three letter code. | String |
fee | The amount of the fee to be paid by the payer. | Number |
totalAmount | The amount that was sent plus any fees related to the payment for the payer. | Number |
beneficiaryFee | The amount of the fee to be paid by the beneficiary if applicable. | Number |
beneficiaryTotalAmount | The amount to be sent plus any fees related to the payment for the beneficiary. | Number |
beneficiaryCurrency | The three letter code associated with the currency used by the beneficiary. | String |
refundReason | The reason for sending a refund, if applicable. Possible values are: CUSTOMER_REQUEST | DUPLICATE | BUSINESS_REQUEST | OTHER. | String |
estimatedArrival | The estimated date this payment will arrive in ISO format E.G. 2022-06-14T00:00:00.000Z. borderless provides an estimated arrival time based on the payer's currency and the beneficiary's currency. This is an estimate and not an accurate date. The payment may arrive sooner or later than the estimated arrival date. | String |
paymentDescription | A customized message describing the nature and reason for the payment. | String |
paymentMethod | The method in which the payment was sent. For example, from borderless™ balance or bank account. | String |
originalPayment | An object that links to the original payment if this payment is a refund. | String |
contact | A JSON object containing information about the beneficiary who is receiving the payment. | Object |
contact.account.displayName | Display name of contacts account. | String |
contact.account.accountType | Account type of beneficiary. Possible values are BUSINESS | PERSONAL. | String |
contact.account.slug | Beneficiary's borderless™ @handle if they have a borderless™ account. | String |
contact.account.currency | The three letter currency code for benefiaciary's preferred currency. | String |