Skip to content
Gallery
API Documentation Admin Webapp
Share
Explore
ORGANIZATION

ORGANIZATION CREATE

POST /organization/create

Request
{
"name":"<<string>>", //REQUIRED
"email": "EMAIL", // REQUIRED
"website":"<<string>>",
"address":"<<string>>", //REQUIRED
"city":"<<string>>", //REQUIRED
"state":"<<string>>", //REQUIRED
"enabled_connections": [
{
"connection_id": "<<string>>",
"assign_membership_on_login": true,
"show_as_button": true,
"is_signup_enabled": true
}
], //REQUIRED
}
Response (Success)
{
"status":true,
"code":"ORGANIZATION_CREATE_SUCCESS",
"payload":{
"id":"<<string>>",
"created_at":"<<date>>",
}

}

Response (Error)
{
"status": false,
"code": "ORGANIZATION_CREATE_FAILED",
"message": "Bad request"
}

Want to print your doc?
This is not the way.
Try clicking the ⋯ next to your doc name or using a keyboard shortcut (
CtrlP
) instead.