IndicatorType

Summary

Resource

Operation

Description

IndicatorType

POST /api/indicators/type

Creates a new indicator type.

GET /api/indicators/type/(int:indicator_type_id)

Gets a single indicator type given its ID.

GET /api/indicators/type

Gets a list of all the indicator types.

PUT /api/indicators/type/(int:indicator_type_id)

Updates an existing indicator type.

DELETE /api/indicators/type/(int:indicator_type_id)

Deletes an indicator type.

Create

JSON Schema

Required parameters are in bold.

type

object

properties

  • value

type

string

maxLength

255

minLength

1

additionalProperties

False


POST /api/indicators/type

Creates a new indicator type.

Example request:

POST /indicators/type HTTP/1.1
Host: 127.0.0.1
Content-Type: application/json

{
  "value": "Email - Address"
}

Example response:

HTTP/1.1 201 Created
Content-Type: application/json

{
  "id": 1,
  "value": "Email - Address"
}
Request Headers
Response Headers
Status Codes

Read Single

GET /api/indicators/type/(int: indicator_type_id)

Gets a single indicator type given its ID.

Example request:

GET /indicators/type/1 HTTP/1.1
Host: 127.0.0.1
Accept: application/json

Example response:

HTTP/1.1 200 OK
Content-Type: application/json

{
  "id": 1,
  "value": "Email - Address"
}
Request Headers
Response Headers
Status Codes

Read Multiple

GET /api/indicators/type

Gets a list of all the indicator types.

Example request:

GET /indicators/type HTTP/1.1
Host: 127.0.0.1
Accept: application/json

Example response:

HTTP/1.1 200 OK
Content-Type: application/json

[
  {
    "id": 1,
    "value": "Email - Address"
  },
  {
    "id": 2,
    "value": "URI - Domain Name"
  }
]
Request Headers
Response Headers
Status Codes

Update

JSON Schema

Required parameters are in bold.

type

object

properties

  • value

type

string

maxLength

255

minLength

1

additionalProperties

False


PUT /api/indicators/type/(int: indicator_type_id)

Updates an existing indicator type.

Example request:

PUT /indicators/type/1 HTTP/1.1
Host: 127.0.0.1
Content-Type: application/json

{
  "value": "URI - Domain Name",
}

Example response:

HTTP/1.1 200 OK
Content-Type: application/json

{
  "id": 1,
  "value": "URI - Domain Name"
}
Request Headers
Response Headers
Status Codes

Delete

DELETE /api/indicators/type/(int: indicator_type_id)

Deletes an indicator type.

Example request:

DELETE /indicators/type/1 HTTP/1.1
Host: 127.0.0.1

Example response:

HTTP/1.1 204 No Content
Request Headers
Status Codes