Stages
Use this endpoint to obtain details on Adaptix's contact stages.
Get Stage
HTTP Request
GET /stages/ID
Response
Expected Response Code: 200
See JSON code example.
Stage Properties
Name | Type | Description |
---|---|---|
id | int | ID of the stage |
isPublished | boolean | Whether the stage is published |
dateAdded | datetime | Date/time stage was created |
createdBy | int | ID of the user that created the stage |
createdByUser | string | Name of the user that created the stage |
dateModified | datetime/null | Date/time stage was last modified |
modifiedBy | int | ID of the user that last modified the stage |
modifiedByUser | string | Name of the user that last modified the stage |
name | string | Stage name |
category | int | Stage category ID |
description | string | Stage description |
weight | int | Stage's weight |
publishUp | datetime | Date/time stage should be published |
publishDown | datetime | Date/time stage should be unpublished |
List Contact Stages
HTTP Request
GET /stages
Response
Expected Response Code: 200
See JSON code example.
Stage Properties
Name | Type | Description |
---|---|---|
total | int | Count of all stages |
id | int | ID of the stage |
isPublished | boolean | Whether the stage is published |
dateAdded | datetime | Date/time stage was created |
createdBy | int | ID of the user that created the stage |
createdByUser | string | Name of the user that created the stage |
dateModified | datetime/null | Date/time stage was last modified |
modifiedBy | int | ID of the user that last modified the stage |
modifiedByUser | string | Name of the user that last modified the stage |
name | string | Stage name |
category | int | Stage category ID |
description | string | Stage description |
weight | int | Stage's weight |
publishUp | datetime | Date/time stage should be published |
publishDown | datetime | Date/time stage should be unpublished |
Create Stage
HTTP Request
POST /stages/new
Post Parameters
Name | Description |
---|---|
name | Stage name is the only required field |
weight | int |
description | A description of the stage. |
isPublished | A value of false or true |
Response
Expected Response Code: 201
Properties
Same as Get Stage.
Edit Stage
PUT creates a stage if the given ID does not exist and clears all the stage information, adds the information from the request. PATCH fails if the stage with the given ID does not exist and updates the stage field values with the values form the request.
HTTP Request
To edit a stage and return a 404 if the stage is not found:
PATCH /stages/ID/edit
To edit a stage and create a new one if the stage is not found:
PUT /stages/ID/edit
Post Parameters
Name | Description |
---|---|
name | Stage name is the only required field |
alias | Name alias generated automatically if not set |
description | A description of the stage. |
isPublished | A value of false or true |
weight | int |
Response
If PUT
, the expected response code is 200
if the stage was edited or 201
if created.
If PATCH
, the expected response code is 200
.
Properties
Same as Get Stage.
Delete Stage
Delete a stage.HTTP Request
DELETE /stages/ID/delete
Response
Expected Response Code: 200
Properties
Same as Get Stage.
Add Contact to a Stage
Manually add a contact to a specific stage.
HTTP Request
POST /stages/STAGE_ID/contact/CONTACT_ID/add
Response
Expected Response Code: 200
See JSON code example.
Remove Contact from a Stage
Manually remove a contact from a specific stage.
HTTP Request
POST /stages/STAGE_ID/contact/CONTACT_ID/remove
Response
Expected Response Code: 200
See JSON code example.