Skip to main content
PUT
/
api
/
organizations
/
user
Update current user organization details
curl --request PUT \
  --url https://your-instance.example.com/api/organizations/user \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "Acme Corp",
  "phoneNumber": "+14165550100",
  "address": "123 Yonge St, Toronto, ON",
  "logoUrl": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAA..."
}
'
{
  "message": "Organization details updated successfully"
}

Authorizations

Authorization
string
header
required

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

Body

application/json
name
string

Updated organization display name.

phoneNumber
string

Updated primary organization phone number in E.164 format.

address
string

Updated mailing/business address.

logoUrl
string

New logo image; accepts a data URI (e.g. base64 PNG) which the server uploads and stores as a hosted URL.

Response

Organization details updated

message
string