create_token
Creates a SiteLock or TRUSTe account so that users can log in and manage
the Trust Service product. To use this command, the order cannot be in the
pending state.
Important:
The resulting URL is valid for only a limited period of time that
may be as short as five minutes.
Request parameters for create_token
Standard parameters
- action = create_token
- object = trust_service
Attributes
Parameters within the attributes associative array are described below.
Note: You must enter at least one of these parameters.
Parameter name | Obligation | Definition/Value |
---|---|---|
order_id | Optional | The SSL Service order ID number |
product_id | Optional | The SSL Service product ID number. |
Response parameters for create_token
Standard parameters
- action = reply
- object = trust_service
- is_success = a Boolean is returned, indicating success or failure of the
request - response_code = response code indicating outcome of the request
- response_text = message describing the outcome of the request
Attributes
If the request is successful, the attributes associative array may include the
following:
Parameter name | Obligation | Obligation Definition/Value |
---|---|---|
login_url | Returned if is_success = true | The The URL where the user can log in to manage the SiteLock or TRUSTe product. |
Examples for create_token
Request
<?xml version='1.0' encoding='UTF-8' standalone='no'?>
<!DOCTYPE OPS_envelope SYSTEM 'ops.dtd'>
<OPS_envelope>
<header>
<version>0.9</version>
</header>
<body>
<data_block>
<dt_assoc>
<item key="protocol">XCP</item>
<item key="action">create_token</item>
<item key="object">trust_service</item>
<item key="attributes">
<dt_assoc>
<item key="order_id">50094</item>
</dt_assoc>
</item>
</dt_assoc>
</data_block>
</body>
</OPS_envelope>
Response
<?xml version='1.0' encoding='UTF-8' standalone='no'?>
<!DOCTYPE OPS_envelope SYSTEM 'ops.dtd'>
<OPS_envelope>
<header>
<version>0.9</version>
</header>
<body>
<data_block>
<dt_assoc>
<item key="protocol">XCP</item>
<item key="action">REPLY</item>
<item key="object">TRUST_SERVICE</item>
<item key="is_success">1</item>
<item key="response_text">Command completed successfully.</item>
<item key="response_code">200</item>
<item key="attributes">
<dt_assoc>
<item key="login_url">https://www.sitelock.com/rlogin.php?token=ccc038d24c91a7a67d0a12f46f29a260</item>
</dt_assoc>
</item>
</dt_assoc>
</data_block>
</body>
</OPS_envelope>
Updated less than a minute ago