Skip to main content
PUT
/
v2
/
user
/
address
Update user address details
curl --request PUT \
  --url https://b2b-api.dev-riseworks.io/v2/user/address \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "line_1": "<string>",
  "line_2": "<string>",
  "city": "<string>",
  "state": "<string>",
  "country": "<string>",
  "zip_code": "<string>",
  "timezone": "<string>"
}'
{
  "success": true
}

Authorizations

Authorization
string
header
required

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

Body

application/json
line_1
string

The first line of the address.

line_2
string

The second line of the address, optional.

city
string

The city of the address.

state
string

The state of the address.

country
string

The country of the address.

zip_code
string

The ZIP or postal code of the address.

timezone
string

The timezone associated with the address.

Response

Default Response

success
boolean
required
I