Emergency numbers

List emergency numbers

get

Get a collection of emergency numbers.

Authorizations
Query parameters
filterstringOptional

Use the filter query parameter to retrieve just a subset of a collection.

searchstringOptional

Use the search query parameter to restrict the results of a request to match a search criterion.

orderbystringOptional

Use the orderby query parameter to specify the sort order of the items returned from server.
The default order is ascending order.

skipinteger · int32Optional

Use the skip query parameter to set the number of items to skip at the start of a collection.

Default: 0
topinteger · int32 · min: 1 · max: 100Optional

Use the top query parameter to specify the page size of the result set.

Default: 100
Responses
200
OK
application/json
get
GET /api/emergency_numbers HTTP/1.1
Host: hostname:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "count": 100,
  "items": [
    {
      "id": "NzAwNTUxOTA5NzczMTQ4MTYw",
      "number_prefix": "text",
      "description": "text"
    }
  ]
}

Add emergency number.

post

Add a new emergency number.

Authorizations
Body
number_prefixstring · min: 1 · max: 64Optional

The emergency number prefix.

descriptionstring · max: 1024Optional

The emergency number description.

Responses
200
Created
application/json
post
POST /api/emergency_numbers HTTP/1.1
Host: hostname:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 45

{
  "number_prefix": "text",
  "description": "text"
}
{
  "id": "NzAwNTUxOTA5NzczMTQ4MTYw"
}

Retrieve emergency number

get

Get detail information of emergency number.

Authorizations
Path parameters
idall ofRequired

The unique ID of emergency number.

stringOptional

The unique ID of the resource.

Example: NzAwNTUxOTA5NzczMTQ4MTYw
Responses
200
OK
application/json
get
GET /api/emergency_numbers/{id} HTTP/1.1
Host: hostname:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "id": "NzAwNTUxOTA5NzczMTQ4MTYw",
  "number_prefix": "text",
  "description": "text"
}

Update emergency number

post

Update a emergency number.

Authorizations
Path parameters
idall ofRequired

The unique ID of emergency number.

stringOptional

The unique ID of the resource.

Example: NzAwNTUxOTA5NzczMTQ4MTYw
Body
number_prefixstring · min: 1 · max: 64Optional

The emergency number prefix.

descriptionstring · max: 1024Optional

The emergency number description.

Responses
200
OK
post
POST /api/emergency_numbers/{id} HTTP/1.1
Host: hostname:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 45

{
  "number_prefix": "text",
  "description": "text"
}

No content