Postman API
  1. Monitors
Postman API
  • API
    • Get all APIs
      GET
    • Create API
      POST
    • Delete an API
      DELETE
    • Single API
      GET
    • Update an API
      PUT
    • Get All API Versions
      GET
    • Create API Version
      POST
    • Delete an API Version
      DELETE
    • Get an API Version
      GET
    • Update an API Version
      PUT
    • Get contract test relations
      GET
    • Get documentation relations
      GET
    • Get environment relations
      GET
    • Get integration test relations
      GET
    • Get monitor relations
      GET
    • Get linked relations
      GET
    • Create relations
      POST
    • Create Schema
      POST
    • Get Schema
      GET
    • Update Schema
      PUT
    • Create collection from schema
      POST
    • Get test suite relations
      GET
    • Sync relations with schema
      PUT
  • Collections
    • All Collections
    • Create Collection
    • Create a Fork
    • Merge a Fork
    • Delete Collection
    • Single Collection
    • Update Collection
  • Environments
    • All Environments
    • Create Environment
    • Delete Environment
    • Single Environment
    • Update Environment
  • Import
    • Import exported data
    • Import external API specification
  • User
    • API Key Owner
  • Mocks
    • All Mocks
    • Create Mock
    • Delete Mock
    • Single Mock
    • Update Mock
    • Publish Mock
    • Unpublish Mock
  • Monitors
    • All Monitors
      GET
    • Create Monitor
      POST
    • Delete Monitor
      DELETE
    • Single Monitor
      GET
    • Update Monitor
      PUT
    • Run a Monitor
      POST
  • Webhooks
    • Create Webhook
  • Workspaces
    • All workspaces
    • Create Workspace
    • Delete Workspace
    • Single workspace
    • Update Workspace
  1. Monitors

Delete Monitor

DELETE
/monitors/{monitor_uid}
Monitors
This endpoint can be used to delete an existing monitor using its uid.
Requires API Key as X-Api-Key request header or apikey URL query parameter.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request DELETE 'https://api.getpostman.com/monitors/'
Response Response Example
200 - Monitor Deleted
{
  "monitor": {
    "id": "1e6b8957-35f9-42a0-8d2f-f03d7085b3d2",
    "uid": "5852-1e6b8957-35f9-42a0-8d2f-f03d7085b3d2"
  }
}

Request

Path Params
monitor_uid
string 
required

Responses

🟢200Monitor Deleted
application/json
Body
monitor
object 
optional
id
string 
optional
Example:
1e6b8957-35f9-42a0-8d2f-f03d7085b3d2
uid
string 
optional
Example:
5852-1e6b8957-35f9-42a0-8d2f-f03d7085b3d2
🟠404Monitor Not Found
Previous
Create Monitor
Next
Single Monitor
Built with