Orqpay
Partner Merchants

Update settlement addresses

PUT
/v1/partner/merchants/{merchantId}/payout-addresses

Authorization

bearerAuth requestSignature
AuthorizationBearer <token>

Partner API key (orq_pk_test_… or orq_pk_live_…). Paste the key.

In: header

X-Request-Signature<token>

Signing secret (orq_ps_…). Playground signs for you.

In: header

Path Parameters

merchantId*string
Formatuuid

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

curl -X PUT "https://example.com/v1/partner/merchants/497f6eca-6276-4993-bfeb-53cbbbba6f08/payout-addresses" \  -H "Content-Type: application/json" \  -d '{    "payoutAddresses": [      {        "networkId": 137,        "address": "0xYourSettlementWallet"      }    ]  }'
{  "merchantId": "c3073b9d-edd0-49f2-a28d-b7ded8ff9a8b",  "payoutAddresses": [    {      "networkId": 0,      "chainName": "string",      "family": "evm",      "address": "string",      "addressDisplay": "string",      "registered": true    }  ]}
{  "error": {    "code": "string",    "message": "string"  }}