Skip to main content

Returns a single transaction intent's data

GET 

/transaction-intents/:transactionIntentId

Returns a single transaction intent's data

Request

Path Parameters

    transactionIntentId uuidrequired

    The id of the transaction intent which should be returned.

Responses

Successful operation

Response Headers

  • Location

    string

    The relative URI of the transaction intent.

  • ETag

    string

    The current version identifier of the transaction intent.

Schema

    id uuidrequired

    The id of the transaction

    amount numberrequired

    Possible values: <= 10000

    The amount of the transaction

    currency stringrequired

    Possible values: [EUR]

    The currency code as ISO 4217 3-digit code (https://en.wikipedia.org/wiki/ISO_4217).

    customerId uuidrequired

    The unique id of the customer participating in the transaction. Available if type is Passthrough

    type TransactionIntentType (string)required

    Possible values: [PassthroughDeposit, PassthroughWithdrawal, CustomerToMerchantPassthrough, MerchantToCustomerPassthrough]

    The type of the transaction intent, this corresponds to the type of the transaction created from the intent

    state TransactionIntentState (string)required

    Possible values: [Created, PendingApproval, Declined, Pending, Expired, Cancelled, Finalized]

    The current(last) state of the transaction intent.

    createdOn date-time

    The server-generated timestamp of the initial creation of the transaction record, in ISO 8601 format of YYYY-MM-DDThh:mm:ssZ in UTC time

Loading...