For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Get a Demo
Get StartedConceptsProductsGuidesUI ComponentsAPI Access
Get StartedConceptsProductsGuidesUI ComponentsAPI Access
    • Getting Started
    • Environments and Base URLs
    • Reference
  • API Reference
        • POSTCreate Peer To Peer Payment Request
        • GETList Peer To Peer Payment Responses
        • GETRetrieve Peer To Peer Payment Response
Get a Demo
LogoLogo
API ReferencePaymentsP2P

Retrieve Peer To Peer Payment Response

GET
https://host.com/v2/payments/p2p/:id/
GET
/v2/payments/p2p/:id/
$curl https://host.com/v2/payments/p2p/id/ \
> -H "Authorization: Bearer <token>"
1{
2 "id": "a1b2c3d4-0000-4000-8000-000000000001",
3 "originating_account_id": "string",
4 "receiving_account_id": "string",
5 "amount": 25,
6 "status": "posted",
7 "description": "Splitting dinner"
8}
Retrieve a single P2P payment by its ID. Returns 404 for payments that do not belong to the authenticated partner.
Was this page helpful?
Previous

Retrieve Webhook Registration

Next
Built with

Authentication

AuthorizationBearer

Bearer authentication of the form Bearer <token>, where token is your auth token.

Path parameters

idstringRequiredformat: "uuid"

The unique ID of the P2P payment (returned at creation time).

Response

idstringformat: "uuid"
Unique identifier for this P2P payment.
originating_account_idstring
External ID of the sending account.
receiving_account_idstring
External ID of the receiving account.
amountdouble
Transfer amount in USD.
statusenum
Current payment status.
descriptionstring
Memo provided at creation time.

Errors

404
Not Found Error