POST
/
api
/
users
/
{id}
/
additional-information
Add additional information to a user
curl --request POST \
  --url https://app.sandbox.rio.trade/api/users/{id}/additional-information \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "identifiersArray": [
    "RC511233",
    "SJ556997"
  ],
  "identifiersObject": {
    "RC": "S11233",
    "SJ": "556997"
  },
  "identifiersString": "511233, 556997",
  "identifiersObjectArray": [
    {
      "RC": "S11233",
      "SJ": "556997"
    },
    {
      "RC": "S11233",
      "SJ": "556997"
    }
  ]
}'
"OK"

Authorizations

x-api-key
string
header
required

Path Parameters

id
string
required

ID of the user.

Example:

"66562bc04fe8bf83c577c178"

Body

application/json · object

Additional information about the user. Can contain any key-value pairs. Please reach out to our compliance team for more information.

Response

200
text/plain

Additional information added successfully

The response is of type string.

Example:

"OK"