IndicatorConfidence

Summary

Resource

Operation

Description

IndicatorConfidence

POST /api/indicators/confidence

Creates a new indicator confidence.

GET /api/indicators/confidence/(int:indicator_confidence_id)

Gets a single indicator confidence given its ID.

GET /api/indicators/confidence

Gets a list of all the indicator confidences.

PUT /api/indicators/confidence/(int:indicator_confidence_id)

Updates an existing indicator confidence.

DELETE /api/indicators/confidence/(int:indicator_confidence_id)

Deletes an indicator confidence.

Create

JSON Schema

Required parameters are in bold.

type

object

properties

  • value

type

string

maxLength

255

minLength

1

additionalProperties

False


POST /api/indicators/confidence

Creates a new indicator confidence.

Example request:

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

{
  "value": "LOW"
}

Example response:

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

{
  "id": 1,
  "value": "LOW"
}
Request Headers
Response Headers
Status Codes

Read Single

GET /api/indicators/confidence/(int: indicator_confidence_id)

Gets a single indicator confidence given its ID.

Example request:

GET /indicators/confidence/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": "LOW"
}
Request Headers
Response Headers
Status Codes

Read Multiple

GET /api/indicators/confidence

Gets a list of all the indicator confidences.

Example request:

GET /indicators/confidence 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": "LOW"
  },
  {
    "id": 2,
    "value": "HIGH"
  }
]
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/confidence/(int: indicator_confidence_id)

Updates an existing indicator confidence.

Example request:

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

{
  "value": "HIGH",
}

Example response:

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

{
  "id": 1,
  "value": "HIGH"
}
Request Headers
Response Headers
Status Codes

Delete

DELETE /api/indicators/confidence/(int: indicator_confidence_id)

Deletes an indicator confidence.

Example request:

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

Example response:

HTTP/1.1 204 No Content
Request Headers
Status Codes