Roles

Using these endpoints you can list, create and delete roles in a membership.

Role List

GET https://identity.vulos.io/api/v1/organization/:organizationId/:membershipId/role/list

Get all of the roles in a specific membership.

Path Parameters

Headers

[
    { "name": "SuperAdmin", "id": "<guid>" }
]

Create Role

PUT https://identity.vulos.io/api/v1/organization/:organizationId/:membershipId/role/create

Create a new role in a specific membership.

Path Parameters

Headers

Request Body

{ "name": "SuperAdmin", "id": "<guid>" }

Delete Role

DELETE https://identity.vulos.io/api/v1/organization/:organizationId/:membershipId/role/:roleId/delete

Delete a specific role.

Path Parameters

Headers

{
     "success": true,
     "message": "A message describing the successful response"
}

Last updated