A transfer_attempt
is created when a buyer attempts to pay for a payment using a Payment Link or Checkout Form. Using Transfer Attempts, you can track the lifecycle of a payment or a series of payments if you are using a multi-use Payment Link.
Each transfer_attempt
has as reference to a transfer_id
to allow you to query it for additional data.
Retrieve a list of all Transfer Attempt
resources, or filter the results to a specific Checkout Form
, Payment Link
, and Payout Link
using the entity_id
query parameter.
For details on how to query endpoints using the available parameters, see Query Parameters.
Finix-Version | string Default: 2018-01-01 Specify the API version of your request. For more details, see Versioning. Example: 2022-02-01 |
List of Transfer Attempt
objects.
Authentication information is missing or invalid
Forbidden
Object does not exist
Invalid field
curl "https://finix.sandbox-payments-api.com/transfer_attempts" \ -H "Finix-Version: 2022-02-01" \ -u USfdccsr1Z5iVbXDyYt7hjZZ:313636f3-fac2-45a7-bff7-a334b93e7bda
{- "_embedded": {
- "transfer_attempts": [
- {
- "id": "transfer_attempt_ciAFQyjswrHwctwuXPBRs",
- "created_at": "2024-12-27T06:34:21.75Z",
- "updated_at": "2024-12-27T06:35:03.14Z",
- "amount": 100000,
- "application_id": "APc9vhYcPsRuTSpKD9KpMtPe",
- "buyer_details": null,
- "currency": "USD",
- "entity_id": "payout_link_ciAFzb3QvDyNUfZN6Hqwe",
- "entity_type": "PAYOUT_LINK",
- "failure_code": null,
- "failure_message": null,
- "merchant_id": null,
- "operation_key": "PUSH_TO_CARD",
- "payment_frequency": null,
- "payment_instrument_id": "PIiYHJ6dDykz1fihySDWzxd4",
- "recipient_details": {
- "type": "PERSONAL",
- "business_name": null,
- "doing_business_as": null,
- "first_name": "Bernie",
- "last_name": "Bingbob",
- "email": null,
- "phone": null,
- "personal_address": {
- "city": "Portland",
- "country": "USA",
- "line1": "783 Southeast 185th Avenue",
- "line2": null,
- "postal_code": "97233",
- "region": "OR"
}, - "business_address": {
- "city": null,
- "country": "USA",
- "line1": null,
- "line2": null,
- "postal_code": null,
- "region": null
}
}, - "recipient_merchant_id": "MUt6kBb22rxUvWNxUf8XriB2",
- "state": "SUCCEEDED",
- "tags": { },
- "transfer_id": "TRo9MsQ6Li9NYbYXuHrhY4kC",
- "type": "CREDIT"
}, - {
- "id": "transfer_attempt_ciAEDMSBFbKCfB6iso39o",
- "created_at": "2024-12-27T06:18:48.88Z",
- "updated_at": "2024-12-27T06:18:48.88Z",
- "amount": 7500,
- "application_id": "APc9vhYcPsRuTSpKD9KpMtPe",
- "buyer_details": {
- "first_name": "Jim",
- "last_name": "Northan",
- "email": "jimnorthan@gmail.com",
- "identity_id": "IDsHeeNHNn9uVmaFUQ9wqBRm",
- "phone": null,
- "billing_address": null,
- "shipping_address": {
- "city": null,
- "country": "USA",
- "line1": null,
- "line2": null,
- "postal_code": null,
- "region": null
}
}, - "currency": "USD",
- "entity_id": "payment_link_ciAEjYy1Wf1ut1fZ27QKv",
- "entity_type": "PAYMENT_LINK",
- "failure_code": null,
- "failure_message": null,
- "merchant_id": "MUmfEGv5bMpSJ9k5TFRUjkmm",
- "operation_key": "SALE",
- "payment_frequency": "ONE_TIME",
- "payment_instrument_id": "PI2wttj9ASQ1Fx5rosQTQmq3",
- "recipient_details": null,
- "recipient_merchant_id": null,
- "state": "SUCCEEDED",
- "tags": { },
- "transfer_id": "TReDhzZatnupBBc21FZp5k4X",
- "type": "DEBIT"
}, - {
- "id": "transfer_attempt_ciADTi3MFTjJdrCuvoNZk",
- "created_at": "2024-12-27T06:08:45.23Z",
- "updated_at": "2024-12-27T06:08:45.23Z",
- "amount": 5418,
- "application_id": "APc9vhYcPsRuTSpKD9KpMtPe",
- "buyer_details": {
- "first_name": "John",
- "last_name": "Smith",
- "email": "johnsmith@gmail.com",
- "identity_id": "IDkw7UhEWpBXpzSkwi3GtzeB",
- "phone": null,
- "billing_address": null,
- "shipping_address": {
- "city": "San Francisco",
- "country": "USA",
- "line1": "741 Douglass Street",
- "line2": null,
- "postal_code": "94114",
- "region": "CA"
}
}, - "currency": "USD",
- "entity_id": "checkout_form_ciADaDNMFAHdyNbDPuByS",
- "entity_type": "CHECKOUT_FORM",
- "failure_code": null,
- "failure_message": null,
- "merchant_id": "MUmfEGv5bMpSJ9k5TFRUjkmm",
- "operation_key": "SALE",
- "payment_frequency": "ONE_TIME",
- "payment_instrument_id": "PI7m5SAdXgkLYRDKmjiYfDgy",
- "recipient_details": null,
- "recipient_merchant_id": null,
- "state": "SUCCEEDED",
- "tags": { },
- "transfer_id": "TRRM1Gf9q8iXB22yZNviNPZ",
- "type": "DEBIT"
}
]
}, - "_links": {
}, - "page": {
- "limit": 100,
- "next_cursor": "transfer_attempt_ciACBK59kDhfx2Mi4Vy81"
}
}
Retrieve the details of a Transfer Attempt
initiated from a Checkout Form
, Payment Link
or Payout Link
.
Finix-Version | string Default: 2018-01-01 Specify the API version of your request. For more details, see Versioning. Example: 2022-02-01 |
A single Transfer Attempt
object.
Authentication information is missing or invalid
Forbidden
Object does not exist
Invalid field
curl "https://finix.sandbox-payments-api.com/transfer_attempts/transfer_attempt_ciACBK59kDhfx2Mi4Vy81" \ -H "Finix-Version: 2022-02-01" \ -u USfdccsr1Z5iVbXDyYt7hjZZ:313636f3-fac2-45a7-bff7-a334b93e7bda
{- "id": "transfer_attempt_ciADTi3MFTjJdrCuvoNZk",
- "created_at": "2024-12-27T06:08:45.23Z",
- "updated_at": "2024-12-27T06:08:45.23Z",
- "amount": 5418,
- "application_id": "APc9vhYcPsRuTSpKD9KpMtPe",
- "buyer_details": {
- "first_name": "John",
- "last_name": "Smith",
- "email": "johnsmith@gmail.com",
- "identity_id": "IDkw7UhEWpBXpzSkwi3GtzeB",
- "phone": null,
- "billing_address": null,
- "shipping_address": {
- "city": "San Francisco",
- "country": "USA",
- "line1": "741 Douglass Street",
- "line2": null,
- "postal_code": "94114",
- "region": "CA"
}
}, - "currency": "USD",
- "entity_id": "checkout_form_ciADaDNMFAHdyNbDPuByS",
- "entity_type": "CHECKOUT_FORM",
- "failure_code": null,
- "failure_message": null,
- "merchant_id": "MUmfEGv5bMpSJ9k5TFRUjkmm",
- "operation_key": "SALE",
- "payment_frequency": "ONE_TIME",
- "payment_instrument_id": "PI7m5SAdXgkLYRDKmjiYfDgy",
- "recipient_details": null,
- "recipient_merchant_id": null,
- "state": "SUCCEEDED",
- "tags": { },
- "transfer_id": "TRRM1Gf9q8iXB22yZNviNPZ",
- "type": "DEBIT"
}