Skip to main content
POST
/
locations
Create a location
curl --request POST \
  --url https://www.ruddr.io/api/workspace/locations \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "isActive": true
}
'
{
  "id": "7a2f3c91-d4e8-4b16-a053-9f1e6c840d72",
  "name": "Austin, Texas",
  "isActive": true,
  "createdAt": "2025-06-12T09:23:44.118Z"
}
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.

Body

application/json
name
string
required

The name of the location.

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.