Note

A Note is a comment on an Event, and is used for incident management.

Package : spaceone.api.monitoring.v1

Note

Note Methods:

create

POST /monitoring/v1/notes

Creates a new Note. You can create Notes for each Alert to record the information needed to manage the Alerts.

TypeMessage

Request

Response

{
    "alert_id": "alert-160ce04f6908",
    "note": "This is a description",
    "domain_id": "domain-58010aa2e451"
}

update

PUT /monitoring/v1/note/{note_id}

Updates a specific Note. You must specify the note_id for Note validation check. If the Note exists, it is updated.

TypeMessage

Request

Response

{
    "note_id": "note-df107d31bf20",
    "note": "This is a test",
    "domain_id": "domain-58010aa2e451"
}

delete

DELETE /monitoring/v1/note/{note_id}

Deletes a specific Note. You must specify the note_id of the Note to delete.

TypeMessage

Request

Response

{
    "note_id": "note-0bfac585bf5a",
    "domain_id": "domain-58010aa2e451"
}

get

GET /monitoring/v1/note/{note_id}

Gets a specific Note. You must specify the note_id and domain_id.

TypeMessage

Request

Response

{
    "note_id": "note-0bfac585bf5a",
    "domain_id": "domain-58010aa2e451"
}

list

GET /monitoring/v1/notes

POST /monitoring/v1/notes/search

Gets a list of all Notes. You can use a query to get a filtered list of Notes.

TypeMessage

Request

Response

{
    "query": {},
    "domain_id": "domain-58010aa2e451"
}

stat

POST /monitoring/v1/notes/stat

TypeMessage

Request

Response

Message

CreateNoteRequest

FieldTypeRequiredDescription

alert_id

string

note

string

domain_id

string

GetNoteRequest

FieldTypeRequiredDescription

note_id

string

domain_id

string

only

list of string

NoteInfo

FieldTypeDescription

note_id

string

alert_id

string

note

string

created_by

string

project_id

string

domain_id

string

created_at

string

NoteQuery

FieldTypeRequiredDescription

query

note_id

string

alert_id

string

created_by

string

project_id

string

domain_id

string

NoteRequest

FieldTypeRequiredDescription

note_id

string

domain_id

string

NoteStatQuery

FieldTypeRequiredDescription

query

domain_id

string

NotesInfo

FieldTypeDescription

results

total_count

UpdateNoteRequest

FieldTypeRequiredDescription

note_id

string

note

string

domain_id

string

Last updated