POST
/
profiles
/
addresses
curl --request POST \
  --url https://api.live.paisr.tech/{version}/profiles/addresses \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "address_line_1": "Example Street 10",
  "address_line_2": "Example Street 12",
  "address_line_3": "Example Street 14",
  "city": "Paramaribo",
  "state": "<string>",
  "apartment": "<string>"
}'
{
  "success": true,
  "data": {
    "id": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
The details required to create a profile address.

The body is of type object.

Response

200
application/json
Successfully created profile address.

The response is of type object.