Skip to main content
PATCH
/
locations
/
{id}
Update a location
curl --request PATCH \
  --url https://www.ruddr.io/api/workspace/locations/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "isActive": true
}
'
{ "id": "c9f1a5e3-7d42-4b86-a0d8-e3b7c6f02d19", "name": "Portland, Oregon", "isActive": true, "createdAt": "2025-04-10T11:35:42.891Z" }
A physical or logical location used to organize service offerings and personnel.

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

The location uuid.

Body

application/json
name
string

The name of the location. Max 255 characters.

isActive
boolean

Whether the location is active.

Response

200

id
string

The unique identifier for the object.

name
string

The name of the location.

isActive
boolean

Whether the location is active.

createdAt
string<date-time>

The timestamp when the object was created.