api_client_key
api_client_secret
api_access_token
api_refresh_token
Parameters
grant_type
string
The desired grant type, as per the OAuth 2.0 spec. Defaults to “refresh_token”
refresh_token
string
The refresh token provided when the most recent access_token was granted
Headers
Authorization
string
The word “Basic ” (with a space) concatenated with a base64 encoded string of your client_id, a colon, and your client_secret passed via the Authorization header.
Example: “Basic “ + base64_encode(CLIENT_ID + ":" + CLIENT_SECRET)
Content-Type
string
"application/x-www-form-urlencoded"
Response
access_token
string
access_refresh_token
string
expires_in
integer
Parameters
module_id
integer
The desired module id in your Online Registration Center account.
export_id
integer
The data export template id. Only “Registration Data” type can be accepted. “Full Record” default profile will be used if not provided.
access_token
string
Your Online Registration Center API access token provided after authenticating with OAuth 2.0
Headers
Authorization
string
The word “Basic ” (with a space) concatenated with a base64 encoded string of your client_id, a colon, and your client_secret passed via the Authorization header.
Example: “Basic “ + base64_encode(CLIENT_ID + ':' + CLIENT_SECRET)
Content-Type
string
"application/x-www-form-urlencoded"
{
"attendees": [
{
"module_id": 0,
"summary": "string",
"module_city": "string",
"module_state": "string",
"start_date": "date",
"trackno": "string",
"trxdate": "date/time",
"lname": "string",
"fname": "string",
"email": "string"
},
{
"module_id": "integer",
"summary": "string",
"module_city": "string",
"module_state": "string",
"start_date": "date",
"trackno": "string",
"trxdate": "date/time",
"lname": "string",
"fname": "string",
"email": "string"
}
]
}