Make sure you set the HTTP Content-Type header to be application/json.
Making API Requests
Raw Request
POST /api/OC_TOMA/v1/profiles/push HTTP/1.1 Host: controller.operationscommander.com Accept: application/json Content-Type: application/json Cache-Control: no-cache { "apiToken": "YOUR-API-TOKEN", "unique_id": "tester23", "login_source": "OPSCOM", "first_name":"firstname", "last_name":"lastname", "user_name":"username", "email":"test@test.com", "street":"123 Main Street, 123 Main Street,123 Main Street,123 Main Street,123 Main Street,123 Main Street", "city":"Everywhere", "province":"bc", "state":"NY", "postal_code":"HOHOHO", "zip":"12345-1212", "phone_cell":"613-555-1212", "user_type_id":"6", "employ_no":"employee number: default", "employee_phone":"emp ph. klondike 555", "student_no":"SN 543209854", "student_phone":"999", "driver_licence_num":"QC 99999999", "driver_license_num":"NYNY", "date_of_birth":"1901-01-31", "locker_user_type_id":"3", "driver_licence_prov":"BC", "driver_license_state":"CA" }
JavaScript Request
var request = new XMLHttpRequest(); request.open('POST', 'https://controller.operationscommander.com/api/OC_TOMA/v1/profiles/push'); request.setRequestHeader('Content-Type', 'application/json'); request.setRequestHeader('Accept', 'application/json'); request.onreadystatechange = function () { if (this.readyState === 4) { console.log('Status:', this.status); console.log('Headers:', this.getAllResponseHeaders()); console.log('Body:', this.responseText); } }; var body = { "apiToken": "YOUR-API-TOKEN", "unique_id": "tester23", "login_source": "OPSCOM", "first_name":"firstname", "last_name":"lastname", "user_name":"username", "email":"test@test.com", "street":"123 Main Street, 123 Main Street,123 Main Street,123 Main Street,123 Main Street,123 Main Street", "city":"Everywhere", "province":"bc", "state":"NY", "postal_code":"HOHOHO", "zip":"12345-1212", "phone_cell":"613-555-1212", "user_type_id":"6", "employ_no":"employee number: default", "employee_phone":"emp ph. klondike 555", "student_no":"SN 543209854", "student_phone":"999", "driver_licence_num":"QC 99999999", "driver_license_num":"NYNY", "date_of_birth":"1901-01-31", "locker_user_type_id":"3", "driver_licence_prov":"BC", "driver_license_state":"CA" } request.send(JSON.stringify(body));
Request Object Attributes
Attribute | Type | Limits | Possible Names | Description |
---|---|---|---|---|
apiToken | String | 50-character alphanumeric including dashes. | apiToken | (Required) Your supplied API Token. |
unique_id | String | 50-character alphanumeric including dashes. | (Required) Your unique_id. | |
login_source | String | 20-character alphanumeric including dashes. | (Required) Your supplied login source. | |
first_name | String | 50-character alphanumeric including dashes. | ||
last_name | String | 50-character alphanumeric including dashes. | ||
user_name | String | 50-character alphanumeric including dashes. | ||
String | 100-character alphanumeric including dashes. | |||
street | String | |||
city | String | 50-character alphanumeric including dashes. | ||
province | String | 2-character postal abbreviation eg. "MA" | province, state | |
postal_code | String | 20-character alphanumeric including dashes. | postal_code, zip | |
phone_cell | String | 20-character alphanumeric including dashes. | ||
user_type_id | String | Id number of UserType | ||
employ_no | String | 50-character alphanumeric including dashes. | ||
employee_phone | String | 50-character alphanumeric including dashes. | ||
student_no | String | 50-character alphanumeric including dashes. | ||
student_phone | String | 50-character alphanumeric including dashes. | ||
driver_licence_num | String | 255-character alphanumeric including dashes. | driver_licence_num, driver_license_num | |
date_of_birth | String | 10-character date in format 'yyy-mm-dd' | ||
locker_user_type_id | String | Id number of LockerUserType | ||
driver_licence_prov | String | 2-character postal abbreviation eg. "MA" | driver_licence_prov, driver_license_state |
Successful Response
The response will be a json object.
Content-Type: application/json
{ "status": "success", "reference_id": 44 }