Skip to main content
POST
/
v1
/
users
/
address
Update User Address
curl --request POST \
  --url https://api.chessa.ai/v1/users/address \
  --header 'Content-Type: application/json' \
  --data '
{
  "additional": "Apt 4B",
  "city": "Lagos",
  "country": "NG",
  "postalCode": "105102",
  "region": "LA",
  "street": "821 Folashade Abike St"
}
'
{
  "address": {
    "additional": "Apt 4B",
    "city": "Lagos",
    "country": "NG",
    "createdAt": "2025-03-12T14:30:42.456Z",
    "id": "b2c3d4e5-f6g7-8h9i-10j11-k12l13m14n15",
    "postalCode": "105102",
    "region": "LA",
    "street": "821 Folashade Abike St",
    "userId": "a1b2c3d4-e5f6-7g8h-9i10-j11k12l13m14"
  },
  "message": "Address added successfully"
}

Headers

x-client-id
string
Example:

""

x-client-secret
string
Example:

""

Body

application/json
additional
string
Example:

"Apt 4B"

city
string
Example:

"Lagos"

country
string
Example:

"NG"

postalCode
string
Example:

"105102"

region
string
Example:

"LA"

street
string
Example:

"821 Folashade Abike St"

Response

Success Response

address
object
message
string
Example:

"Address added successfully"