GET

Registration Type - 02.Read many

Registration Type - 02.Read many[S]

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

(optional)
integer

Take N records. Default value is 10. Max value is 100.

(optional)
integer

Skip N records.

Request headers

string

User authentication cookie. Read more about how to you get it from here.

string
Subscription key which provides access to this API.

Response 200

Returns a list with all registration types available.

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

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