Skip to main content
POST
/
industries
Create an industry
curl --request POST \
  --url https://www.ruddr.io/api/workspace/industries \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "isActive": true
}
'
{
  "id": "a3f8c1d2-5e47-4b9a-8f6e-2c1d0e9b7a4f",
  "name": "Technology",
  "isActive": true,
  "createdAt": "2024-03-15T14:22:10.481Z"
}
A classification that can be assigned to clients and used to filter reports.

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

isActive
boolean

Whether the industry is active.

Response

200

id
string

The unique identifier for the object.

name
string

The name of the industry.

isActive
boolean

Whether the industry is active.

createdAt
string<date-time>

The timestamp when the object was created.