Skip to content

Location Requests Delete

View a location request.

Usage

s10k locations requests delete
    -r=<requestId>
    [-mode=<displayMode>]

Options

Option Long Version Description
-r= --request-id the ID of the request to delete
-mode= --display-mode= the format to display the data as, one of CSV, JSON, or PRETTY; defaults to PRETTY

Output

The deleted location request information.

Examples

s10k locations requests delete --request-id 3

You can use locs instead of locations and reqs instead of requests:

s10k locs reqs delete --request-id 3
╔════╤══════════════════════════════════╤══════════════════════════════════╤═══════════╤═════════════╤════════════════╤════════════════════════╤═══════════════════════════╤═════════╗
║ ID │ Created                          │ Modified                         │ Status    │ Location ID │ Source ID      │ Features               │ Info                      │ Message ║
╠════╪══════════════════════════════════╪══════════════════════════════════╪═══════════╪═════════════╪════════════════╪════════════════════════╪═══════════════════════════╪═════════╣
║  3 │ 2026-08-30 17:30:10.387888+12:00 │ 2026-08-30 17:30:10.387888+12:00 │ Submitted │             │ OpenWeatherMap │ weather, forecast, day │ name     Wellington       │         ║
║    │                                  │                                  │           │             │                │                        │ zone     Pacific/Auckland │         ║
║    │                                  │                                  │           │             │                │                        │ region   Wellington       │         ║
║    │                                  │                                  │           │             │                │                        │ country  NZ               │         ║
║    │                                  │                                  │           │             │                │                        │ locality Wellington       │         ║
║    │                                  │                                  │           │             │                │                        │                           │         ║
╚════╧══════════════════════════════════╧══════════════════════════════════╧═══════════╧═════════════╧════════════════╧════════════════════════╧═══════════════════════════╧═════════╝
ID,Created,Modified,Status,Location ID,Source ID,Features,Info,Message
3,2026-08-30 17:30:10.387888+12:00,2026-08-30 17:30:10.387888+12:00,Submitted,,OpenWeatherMap,"weather, forecast, day","name     Wellington
zone     Pacific/Auckland
region   Wellington
country  NZ
locality Wellington
",
{
  "id": 3,
  "created": "2026-08-30 05:30:10.387888Z",
  "modified": "2026-08-30 05:30:10.387888Z",
  "userId": 147,
  "status": "Submitted",
  "data": {
    "features": [
      "weather",
      "forecast",
      "day"
    ],
    "location": {
      "name": "Wellington",
      "zone": "Pacific/Auckland",
      "region": "Wellington",
      "country": "NZ",
      "locality": "Wellington"
    },
    "sourceId": "OpenWeatherMap"
  }
}