Skip to main content
POST
/
pipeline-activity-types
Create a pipeline activity type
curl --request POST \
  --url https://www.ruddr.io/api/workspace/pipeline-activity-types \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "isActive": true
}
'
{
  "id": "a70b85f9-895f-4b28-aecc-ab8f2934b2cc",
  "name": "Pipeline Activity Types",
  "description": "A brief description.",
  "readOnly": true,
  "typeId": "open_date_change",
  "createdAt": "2025-01-15T20:47:03.284Z",
  "isActive": true
}
A classification for activities that occur during the sales process.

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 pipeline activity type (max 255 chars).

isActive
boolean

Whether the pipeline activity type is active. Defaults true if not provided.

Response

200

id
string

The unique identifier for the object.

name
string

The name of the pipeline activity type (max 255 chars).

description
string
readOnly
boolean

Whether this record is read-only.

typeId
string
createdAt
string<date-time>

The timestamp when the object was created.

isActive
boolean

Whether the pipeline activity type is active.