Skip to main content
POST
/
practices
Create a practice
curl --request POST \
  --url https://www.ruddr.io/api/workspace/practices \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "isActive": true
}
'
{
  "id": "a3f7c821-6d4e-4b29-9f1a-d85c2e073f6b",
  "name": "Financial Services",
  "isActive": true,
  "createdAt": "2026-01-15T14:01:51.774Z"
}
A functional area used to group service offerings and personnel within the organization.

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 practice.

isActive
boolean

Whether the practice is active.

Response

200

id
string

The unique identifier for the object.

name
string

The name of the practice.

isActive
boolean

Whether the practice is active.

createdAt
string<date-time>

The timestamp when the object was created.