POST api/order/active_trial_subscription

Request Information

URI Parameters

None.

Body Parameters

trail_activate_request
NameDescriptionTypeAdditional information
customer_id

string

None.

token

string

None.

addon_id

string

None.

plan_id

string

None.

key_id

string

None.

Request Formats

application/json, text/json

Sample:
{
  "customer_id": "sample string 1",
  "token": "sample string 2",
  "addon_id": "sample string 3",
  "plan_id": "sample string 4",
  "key_id": "sample string 5"
}

application/xml, text/xml

Sample:
<trail_activate_request xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PromptTech.CRM.CustomerApp.Models">
  <addon_id>sample string 3</addon_id>
  <customer_id>sample string 1</customer_id>
  <key_id>sample string 5</key_id>
  <plan_id>sample string 4</plan_id>
  <token>sample string 2</token>
</trail_activate_request>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

trail_activate_response
NameDescriptionTypeAdditional information
success

boolean

None.

message

string

None.

Response Formats

application/json, text/json

Sample:
{
  "success": true,
  "message": "sample string 2"
}

application/xml, text/xml

Sample:
<trail_activate_response xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PromptTech.CRM.CustomerApp.Models">
  <message>sample string 2</message>
  <success>true</success>
</trail_activate_response>