Projects API
Create Project
POST
https://integrator.dckap.com/api/projects/create
To create a new project and for providing access to given users or to specific groups.
Headers
Authorization
string
Bearer {access_token}
Request Body
project_name
string
Project Name
project_description
string
Project Description
users
array
User Email ID's
groups
array
User Group ID's
Update Project
POST
https://integrator.dckap.com/api/projects/update/:id
To modify and update the existing project.
Path Parameters
id
string
Project ID
Headers
Authorization
string
Bearer {access_token}
Request Body
users
array
User Email ID's
groups
array
User Group ID's
project_name
string
Project Name
project_description
string
Project Description
Update Project Settings
POST
https://integrator.dckap.com/workspace/:project_id/api/settings/update
To modify and update the project settings
Path Parameters
project_id
string
Project ID
Headers
Authorization
string
Bearer {access_token}
Body Parameters
To enable project activity logs, provide the key activity_logs___activity_logs
with value true
in body parameters and all the other settings can be modified in the same way.
Only Project Owner can modify the project settings. Project Administrators are not allowed to modify/update the project settings through API.
Last updated