VictorOps
  1. Alerts
VictorOps
  • Alerts
    • Retrieve alert details.
      GET
  • Incidents
    • Get current incident information
      GET
    • Create a new incident
      POST
    • Acknowledge an incident or list of incidents
      PATCH
    • Acknowledge all incidents for which a user was paged.
      PATCH
    • Resolve all incidents for which a user was paged.
      PATCH
    • Reroute one or more incidents to one or more new routable destinations.
      POST
    • Resolve an incident or list of incidents
      PATCH
  • Maintenance Mode
    • Get an organization's current maintenance mode state
      GET
    • Start maintenance mode for routing keys
      POST
    • End maintenance mode for routing keys
      PUT
  • On-call
    • Get an organization's on-call users
      GET
    • Create an on-call override (take on-call)
      PATCH
    • Get a team's on-call schedule
      GET
    • Create an on-call override (take on-call)
      PATCH
    • Get a user's on-call schedule
      GET
    • Get a team's on-call schedule
      GET
    • Get a user's on-call schedule
      GET
  • Routing Keys
    • List routing keys with associated teams
      GET
  • Scheduled Overrides
    • List the scheduled overrides
      GET
    • Creates a new scheduled override
      POST
    • Deletes a scheduled override
      DELETE
    • Get the specified scheduled override
      GET
    • Get the specified scheduled override
      GET
    • Delete the scheduled override assignment
      DELETE
    • Get the specified scheduled override assignment
      GET
    • Update the scheduled override assignment
      PUT
  • Escalation Policies
    • Get escalation policy info
    • Retrieve a list of escalation policies for a team
  • Personal Paging Policy Values
    • Get the available contact types
    • Get the available notification types
    • Get the available timeout values
  • Personal Paging Policies
    • Get the user's paging policy
    • Create a paging policy step
    • Get a paging policy step
    • Create a rule for a paging policy step
    • Update a paging policy step
    • Delete a rule from a paging policy step
    • Get a rule from a paging policy step
    • Update a rule for a paging policy step
  • Teams
    • List teams
    • Add a team
    • Remove a team
    • Retrieve information for a team
    • Update a team
    • Retrieve a list of team admins for a team
    • Retrieve a list of members for a team
    • Add a team member
    • Remove a team member
  • Users
    • List users
    • Add a user
    • Remove a user
    • Retrieve information for a user
    • Update a user
    • Retrieve the user's team membership
  • User Contact Methods
    • Get a list of all contact methods for a user
    • Get a list of all contact devices for a user
    • Delete a contact device for a user
    • Get the indicated contact device for a user
    • Update a contact device for a user
    • Get a list of all contact emails for a user
    • Create a contact emails for a user
    • Delete a contact email for a user
    • Get the indicated contact email for a user
    • Get a list of all contact phones for a user
    • Create a contact phones for a user
    • Delete a contact phone for a user
    • Get the indicated contact phone for a user
  • User Paging Policies
    • Get a list of paging policies for a user
  • Reporting
    • Get/search incident history
    • A list of shift changes for a team
    • Get/search incident history
  • Schemas
    • Schemas
      • AckOrResolveByUserRequest
      • AckOrResolveRequest
      • AckOrResolveResponse
      • AckOrResolveResult
      • AckUser
      • ActiveIncidentInfo
      • ActiveIncidentList
      • ActiveMaintenanceMode
      • AddGroupPayload
      • AddStepPayload
      • AddTeamMemberPayload
      • AddTeamPayload
      • AddTeamResponse
      • AddUserPayload
      • AddUserResponse
      • Assignment
      • Contact
      • ContactDescription
      • ContactDevice
      • ContactDeviceAdd
      • ContactEmailAdd
      • ContactObject
      • ContactPhoneAdd
      • ContactType
      • CreateIncidentRequest
      • CreatedIncident
      • DeleteUserPayload
      • EscalationPolicy
      • EscalationPolicyInfo
      • EscalationPolicyInfoList
      • EscalationPolicyList
      • GetAlertResponse
      • IncidentInfo
      • IncidentList
      • IncidentTarget
      • IncidentTransition
      • ListRoutingKeysResponse
      • ListTeamMembersResponse
      • ListTeamResponse
      • ListUserResponse
      • MaintenanceModeState
      • MaintenanceModeTarget
      • NotificationDescription
      • NotificationObject
      • NotificationType
      • OnCallAndOverrides
      • OnCallEntry
      • OnCallEscalationPolicyResource
      • OnCallInterval
      • OnCallLog
      • OnCallNowResource
      • OnCallOverride
      • OnCallRoll
      • OnCallTeamResource
      • OnCallTeamsResource
      • OnCallType
      • OnCallUsersResource
      • PagingPolicy
      • PagingPolicyStep
      • PagingPolicyStepRule
      • PagingPolicyStepRuleAdd
      • Policies
      • PolicySchedule
      • RemoveTeamMemberPayload
      • Reroute
      • RerouteCollection
      • RerouteStatus
      • RerouteStatusResponse
      • RerouteTargetStatus
      • RoutingKeyInfo
      • RoutingKeyTarget
      • ScheduledOverride
      • ScheduledOverridePayload
      • ScheduledOverridePayloadUpdate
      • ScheduledUser
      • SimpleTeamDetail
      • TakeRequest
      • TakeResult
      • Team
      • TeamAdmin
      • TeamAdminsResponse
      • TeamDetail
      • TeamMember
      • TeamSchedule
      • TeamScheduleOverlayResource
      • TeamScheduleResource
      • TeamScheduleRollResource
      • TimeoutDescription
      • TimeoutObject
      • TimeoutType
      • UpdateAssignment
      • User
      • UserContact
      • UserLog
      • UserPagingPolicy
      • UserSchedule
      • UserTeamsResponse
      • V1User
  1. Alerts

Retrieve alert details.

GET
/api-public/v1/alerts/{uuid}
Retrieve the details of an alert that was sent VictorOps by you.
This API may be called a maximum of 60 times per minute.

Request

Path Params

Header Params

Responses

🟢200The alert, if found.
application/json
Body

🟠400400
🟠401401
🟠403403
🟠404404
🔴500500
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.victorops.com//api-public/v1/alerts/' \
--header 'X-VO-Api-Id;' \
--header 'X-VO-Api-Key;'
Response Response Example
200 - Example 1
{
    "ackAuthor": "string",
    "ackMsg": "string",
    "entityDisplayName": "string",
    "entityId": "string",
    "messageType": "string",
    "monitoringTool": "string",
    "raw": "string",
    "stateMessage": "string",
    "stateStartTime": 0,
    "timestamp": 0
}
Modified at 2022-09-10 22:14:54
Next
Get current incident information
Built with