PUT
/
profiles
/
addresses
/
{address_id}
curl --request PUT \
  --url https://api.live.paisr.tech/{version}/profiles/addresses/{address_id} \
  --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,
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

address_id
string
required

The Address ID.

Body

application/json
The details required to update the profile address.

The body is of type object.

Response

200
application/json
Successfully updated profile address.

The response is of type object.