It seems like your browser didn't download the required fonts. Please revise your security settings and try again.
Barracuda Intronis Backup
formerly ECHOplatform

Barracuda Campus is getting an upgrade!

We are excited to announce that Barracuda Campus will migrate to a new platform around mid-January 2026. Please see the announcement on the Campus Dashboard to find out more.

Trial Partner Creation Controller

  • Last updated on

URI

/v1/trialpartners

URI Parameters

  • n/a

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

  • username (string)
  • password (string)
  • name (string)
  • company (string)
  • street_address (string)
  • street_address2 (string)
  • city (string)
  • state (string)
  • zip (string)
  • country (string) - deprecated
  • country_iso (string) -- required
  • email (string)
  • phone (string)
  • coupon_code (string)

Response Attributes

  • n/a

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