CRM Endpoints Playground

Every CRM endpoint is exposed here with an execution component. All POST / PUT / PATCH / DELETE verbs are testable from this page.

A) Companies

List companies

/api/crm/general/companies

GET

Get company

/api/crm/general/companies/{company}

GET

Create company

/api/crm/general/companies

POST

Update company

/api/crm/general/companies/{company}

PATCH

Delete company

/api/crm/general/companies/{company}

DELETE

B) Contacts

List contacts

/api/crm/general/contacts

GET

Get contact

/api/crm/general/contacts/{contact}

GET

C) Projects

List projects

/api/crm/general/projects

GET

Get project

/api/crm/general/projects/{project}

GET

Create project

/api/crm/general/projects

POST

Update project

/api/crm/general/projects/{project}

PATCH

Delete project

/api/crm/general/projects/{project}

DELETE

Attach project assignee

/api/crm/general/projects/{project}/assignees/{user}

PUT

Detach project assignee

/api/crm/general/projects/{project}/assignees/{user}

DELETE

D) Sprints

List sprints

/api/crm/general/sprints

GET

Get sprint

/api/crm/general/sprints/{sprint}

GET

Create sprint

/api/crm/general/sprints

POST

Update sprint

/api/crm/general/sprints/{sprint}

PATCH

Delete sprint

/api/crm/general/sprints/{sprint}

DELETE

Attach sprint assignee

/api/crm/general/sprints/{sprint}/assignees/{user}

PUT

Detach sprint assignee

/api/crm/general/sprints/{sprint}/assignees/{user}

DELETE

Attach sprint task

/api/crm/general/sprints/{sprint}/tasks/{task}

PUT

Detach sprint task

/api/crm/general/sprints/{sprint}/tasks/{task}

DELETE

E) Tasks + Subtasks

List tasks

/api/crm/general/tasks

GET

Get task

/api/crm/general/tasks/{task}

GET

Create task

/api/crm/general/tasks

POST

Update task

/api/crm/general/tasks/{task}

PATCH

Delete task

/api/crm/general/tasks/{task}

DELETE

Attach task assignee

/api/crm/general/tasks/{task}/assignees/{user}

PUT

Detach task assignee

/api/crm/general/tasks/{task}/assignees/{user}

DELETE

Create subtask

/api/crm/general/tasks/{task}/subtasks

POST

Update subtask

/api/crm/general/subtasks/{subtask}

PATCH

Delete subtask

/api/crm/general/subtasks/{subtask}

DELETE

Attach subtask to task

/api/crm/general/tasks/{task}/subtasks/{subtask}

PUT

Detach subtask from task

/api/crm/general/tasks/{task}/subtasks/{subtask}

DELETE

F) Billings

List billings

/api/crm/general/billings

GET

Get billing

/api/crm/general/billings/{billing}

GET

Create billing

/api/crm/general/billings

POST

Update billing

/api/crm/general/billings/{billing}

PATCH

Delete billing

/api/crm/general/billings/{billing}

DELETE

G) Task requests

List task requests

/api/crm/general/task-requests

GET

Get task request

/api/crm/general/task-requests/{taskRequest}

GET

Create task request

/api/crm/general/task-requests

POST

Update task request

/api/crm/general/task-requests/{taskRequest}

PATCH

Delete task request

/api/crm/general/task-requests/{taskRequest}

DELETE

H) Dashboard / Reports

Get dashboard

/api/crm/general/dashboard

GET

Get report JSON

/api/crm/general/reports

GET

Get report CSV

/api/crm/general/reports

GET

Get report PDF

/api/crm/general/reports

GET