POST api/CRM/ChangeTrialDate
Used to change the start date of a trail purchase.
Request Information
URI Parameters
None.
Body Parameters
ChangeTrailDateRequest object containing Id of the lead and new start date.
ChangeTrailDateRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| leadId | globally unique identifier |
None. |
|
| StartDate | string |
None. |
|
| Duration | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"leadId": "ab45dcbb-c386-4270-98fc-a486a7e14b24",
"StartDate": "sample string 2",
"Duration": 3
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Response object
Response| Name | Description | Type | Additional information |
|---|---|---|---|
| Result | boolean |
None. |
|
| Message | string |
None. |
|
| Errors | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"Result": true,
"Message": "sample string 2",
"Errors": {
"$id": "2"
}
}