You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

1. Register organization and user  

POST api/v1/register/ #register organization and user(admin)

Body ParameterTypeNote
usernamestring
rolestring
passwordstring
passwrodAgainstring
orgNamestring
emailstring

Example Request Body:

{
    "username": "test",
    "role": "administrator",
    "password": "foo",
    "passwordAgain": "foo",
    "orgName": "org1.cello.com",
    "email": "foo@email.com"
}

Example Response Body:

{
    "data": {
        "id": "0b245629-06cf-4fa5-92d9-7109a3a64b56"
    },
    "msg": null,
    "status": "successful"
}



  • No labels