GET /external/api/v3/role
Get a list of all role names and the corresponding id.
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of RoleModelName | Description | Type | Additional information | Nullable |
---|---|---|---|---|
Name | string |
None |
False | |
Id | globally unique identifier |
Required |
False |
Response Formats
application/json, text/json
Sample:
[ { "Name": "sample string 1", "Id": "622019e1-9e26-47ce-bd54-81d7d0dfdfb3" }, { "Name": "sample string 1", "Id": "622019e1-9e26-47ce-bd54-81d7d0dfdfb3" } ]
application/xml, text/xml
Sample:
<ArrayOfRoleModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Expoints.API.Extern.Models"> <RoleModel> <Id>622019e1-9e26-47ce-bd54-81d7d0dfdfb3</Id> <Name>sample string 1</Name> </RoleModel> <RoleModel> <Id>622019e1-9e26-47ce-bd54-81d7d0dfdfb3</Id> <Name>sample string 1</Name> </RoleModel> </ArrayOfRoleModel>
Response Status Codes
Status Code | Name | Description |
---|---|---|
200 | OK | The request has succeeded. |
400 | Bad Request | Fulfilling the request would cause an invalid state. Request needs modification. |
401 | Unauthorized | Missing or invalid authentication token. |
403 | Forbidden | Server refuses to authorize the request. |
408 | Request Timeout | The server timed out waiting for the request. |
429 | Too Many Requests | Too many requests in a given amount of time. |
500 | Internal Server Error | The server encountered an unexpected condition which prevented it from fulfilling the request. |
503 | Service Unavailable | The server is unable to proces the request at the moment, try again later. |