POST
/
v2
/
transaction_intents
/
{intent_id}
curl --request POST \
  --url https://dev.sbx.imprint.co/v2/transaction_intents/{intent_id} \
  --header 'Content-Type: application/json' \
  --data '{
  "customer_id": "D8CD2346-9A02-4ABB-A388-AB3DACC57DCF",
  "amount": 100,
  "status": "CONFIRMED",
  "currency": "USD",
  "network_transaction_id": "<string>",
  "partner_transaction_id": "<string>",
  "metadata": {
    "platform_version": "2.1.0"
  }
}'
{
  "id": "5B30532B-5B5B-4826-8DE2-429C57B705FD",
  "customer_id": "9B5E1EE0-2E1C-46E7-81B9-3C3917204BE4",
  "payment_method_id": "DCBFC736-2286-42DD-897D-160DCA80AED2",
  "amount": 10000,
  "currency": "USD",
  "status": "CONFIRMED",
  "network_transaction_id": "<string>",
  "partner_transaction_id": "<string>",
  "created_at": "2025-02-13T19:08:07.000Z",
  "updated_at": "2025-02-13T19:08:07.000Z",
  "metadata": {
    "platform_version": "2.1.0"
  }
}

Authorizations

Authorization
string
header
required

Bearer HTTP authentication. Allowed headers-- Authorization: Bearer <api_key>

Path Parameters

intent_id
string
required

The unique identifier for the transaction intent

Example:

"3E4F0CCD-ACBF-42F3-A459-6DF92AF632D1"

Body

application/json

Response

200
application/json

Transaction intent updated successfully

The response is of type object.