GET

Read User Type

Get a user type by its ID value.

Important

Calls to this method must include the cookie .LawPanel.AuthCookie in order to identify you at user level. For more details about authentication please check this link. To obtain the cookie you can use the method Login.

Request URL

Request parameters

string

User type ID

Request headers

string
Subscription key which provides access to this API.

Response 200

Returns a user type representation.

  • string id: The ID for the user type.
  • string name: User type human-readable name.
  • integer code: A number to represent the user type.

Loading...
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "code": {
      "type": "integer"
    }
  }
}
* See getting started for more information on how to use this API. You can also check the API change history.