Skip to main content

Retrieve a Payment

GET 

/payments/:id

Fetches detailed information on a specific payment by id .

Request

Path Parameters

    id stringrequired

    ID of the Payment.

Responses

Payment details

Schema

    id string
    amount string

    The amount of the payment

    stellar_transaction_id string

    The ID of the transaction in the Stellar network. It can be used tio track the payment in the Stellar network using Stellar Laboratory, or StellarExpert.

    circle_transfer_request_id string

    The Circle transfer request ID. It is only present when the payment was made using Circle.

    stellar_operation_id string
    status PaymentStatus (string)

    Possible values: [DRAFT, READY, PENDING, PAUSED, SUCCESS, FAILED]

    The status of the payment

    status_history

    object[]

    An aggregated list of metadata objects containing the statuses and the timestamp of when these status changes occurred.

  • Array [

  • status PaymentStatus (string)

    Possible values: [DRAFT, READY, PENDING, PAUSED, SUCCESS, FAILED]

    The status of the payment

    status_message string
    timestamp date-time
  • ]

  • disbursement

    object

    id uuid

    The unique identifier of the disbursement

    name string

    The name of the disbursement

    status DisbursementStatus (string)

    Possible values: [DRAFT, READY, STARTED, PAUSED, COMPLETED]

    created_at date-time

    The creation timestamp of the disbursement

    updated_at date-time

    The last update timestamp of the disbursement

    asset

    object

    The Stellar asset object

    id string
    code string

    Asset code

    issuer string

    Asset issuer address

    created_at date-time
    updated_at date-time
    deleted_at date-time

    receiver_wallet

    object

    id string

    receiver

    object

    id string

    wallet

    object

    id string
    name string
    homepage string
    stellar_address string
    created_at string
    updated_at string
    status ReceiversWalletStatus (string)

    Possible values: [DRAFT, READY, REGISTERED, FLAGGED]

    created_at date-time
    updated_at date-time
Loading...