URI | /v1/trialpartners |
URI Parameters |
|
Methods | POST |
POST /v1/trialpartners
Creates a new partner with the given properties. When requesting access_token, grant_type must be set to value trial_partners.
Scope | trial_partners_write |
Request Body Parameters |
|
Response Attributes |
|
Example JSON
Request:
POST /v1/partners HTTP/1.1
Host: com
Authorization: OAuth vF9dft4qmT
Content-Type: application/json
{
"username": “barracuda”,
"password": "ps8wEzeT",
"name": "John Smith",
"company": "barracuda",
"street_address": "334 Congress Street",
"street_address2": "",
"city": "Boston",
"state": "MA",
"zip": "02210",
"country": "USA",
"country_iso": "US",
"email": "jsmith@barracuda.com",
"phone": "617-948-5300",
"coupon_code": "abcdefgegh"
}
Response:
HTTP/1.1 201 Created
Location: https://api.intronis.com/v1/partners/barracuda
Example XML
Request:
POST /v1/trialpartners HTTP/1.1
Host: api.intronis.com
Authorization: OAuth vF9dft4qmT
Content-Type: application/xml
<?xml version="1.0" encoding="UTF-8" ?>
<partner>
<username>barracuda</username>
<password>ps8wEzeT</password>
<name>John Smith</name>
<company>barracuda</company>
<street_address>334 Congress Street</street_address>
<street_address2/>
<city>Boston</city>
<state>MA</state>
<zip>02210</zip>
<country>USA</country>
<country_iso>US</country_iso>
<email>jsmith@barracuda.com</email>
<phone>617-948-5300</phone>
<coupon_code>10</coupon_code>
</partner>
Response:
HTTP/1.1 201 Created
Location: https://api.intronis.com/v1/partners/barracuda