ContentAir API

ContentaAir API access is provided for ISPs to provision accounts and users. RESTful API is implemented using JSON syntax. There is no website content manipulation API yet.

Service Provisioning API Resources

Resource:

User - Create/Update

Description:

Updates a user with a specified email. If it doesn't exist, creates a new user.

Transfer method:

PUT

Address:

https://api.contentair.com/service/1/user/{email}

Input:

  1. {
  2.     "email":"[email protected]",
  3.     "password":"Pass1234", # If not exist
  4.     "accounts": # Removes not listed here
  5.     {
  6.         "xxxxx":"admin"
  7.     }
  8. }

Output:

None