Skip to main content
PATCH
/
pos
/
api
/
v1
/
payout
/
update-transfer-id
cURL
curl --request PATCH \
  --url https://sandbox.dollarpe.xyz/pos/api/v1/payout/update-transfer-id \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <api-key>' \
  --header 'X-SIGNATURE: <api-key>' \
  --header 'X-TIMESTAMP: <api-key>' \
  --data '
{
  "exchange_order_id": "982738475838910",
  "exchange_transfer_id": "987283747899283945"
}
'
{
  "status": true,
  "message": "Success",
  "data": {
    "exchange_order_id": "982738475838910",
    "exchange_transfer_id": "987283747899283945"
  }
}

Authorizations

X-API-KEY
string
header
required

API Key for authentication

X-TIMESTAMP
string
header
required

Current timestamp in seconds since epoch

X-SIGNATURE
string
header
required

HMAC SHA256 signature of the request encoded in Base64

Body

application/json
exchange_order_id
string<uuid>
required
Example:

"982738475838910"

exchange_transfer_id
string<uuid>
required
Example:

"987283747899283945"

Response

Transfer ID updated successfully

status
boolean
Example:

true

message
string
Example:

"Success"

data
object