Skip to main content

Update Settlement Account

PUT /settlements

Description​

Retrieve settlement account information based on specified criteria. This endpoint allows users to obtain details about settlement accounts.

Parameters:​

NameTypeDescriptionRequired/Optional
countryCodestringThe country code.Required
tenantIdstringThe identifier for the tenant.Required
userIdstringThe user identifier.Required

StartFragment

Response Code: 200 - OK​

Description​

Successful.

Response Field​

FieldTypeDescription
statusbooleanIndicates the overall success of the operation.
statusCodeintegerRepresents the specific status code for the response.
messagestringProvides additional information about the response.
dataobjectContains the main data payload of the response.
errorsarrayAn array containing error details if issues occurred.
- messagestringDescribes the error.
- descriptiveMessagestringProvides a more detailed and descriptive message about the error.

Example​

<response>
<status>true</status>
<statusCode>0</statusCode>
<message>string</message>
<data></data>
<errors>
<error>
<message>string</message>
<descriptiveMessage>string</descriptiveMessage>
</error>
</errors>
</response>

Method: PUT​

>http://20.87.230.105/platform/wallets/settlements

Headers​

Content-TypeValue
apiKey{{apiKey}}

Body (raw)​

{
"recipientName": "string",
"recipientBankCode": "string",
"recipientAccountNumber": "stringstri",
"uuId": "string",
"userId": "string"
}

🔑 Authentication bearer​

ParamvalueType
token{{accessCode}}string

LANGUAGE

AUTHORIZATION

Bearer

CURL REQUEST


curl --request PUT \ 
--url /settlements \
--header 'accept: application/json' \
--header 'content-type: application/json'

RESPONSE


Click Try It! to start a request and see the response here!