Delete partial item data

Delete part of an item's data.

This route uses JSON pointer syntax to specify the data to delete.

DELETE https://api.jsonpad.io/lists/{listId}/items/{itemId}/data/{pointer}

Example

cURL
1234curl https://api.jsonpad.io/lists/a0d776d8-63c7-4452-a739-6c4fc619f678/items/dd8f042a-587e-4aac-9214-cd54a1f6ad37/data/locations/0 \
  -X DELETE \
  -H "Content-Type: application/json" \
  -H "x-api-token: <YOUR TOKEN>"

Parameters

  • required
    listIdstringA list id or path name.
  • required
    itemIdstringAn item id or alias.
  • required
    pointerstringA JSON pointer to the field in the item's data that will be returned.
  • optional
    includeDatabooleanhttps://api.jsonpad.io/lists/edfb946a-52a9-44f8-b710-d2a3a5512d15/items/729205c3-f5b7-426d-84c5-2a531cfc820e/data/locations/0?includeData=true

    Whether to include the item data in the response or not. Can be true or false.

    Defaults to true.

Request headers

  • required
    x-api-tokenstringYour API token.
  • optional
    x-identity-tokenstringAn identity token.
  • optional
    x-identity-groupstringAn identity group.

Request body

No request body

Response body

200 OK
{
id: "3a2129cf-9f7f-4a82-a520-a8dba48cf32b"
createdAt: "2026-09-05T11:30:16.332Z"
updatedAt: "2026-09-05T11:30:16.332Z"
data: {
name: "John Doe"
age: 30
locations: [
0: {
city: "New York"
state: "NY"
}
1: {
city: "Los Angeles"
state: "CA"
}
]
}
version: "1"
readonly: false
activated: true
description: "This is a sample item"
size: 111
locked: false
}

Response headers

  • etagaf2bdbe1aa9b6ec1e2ade1d694f41fc71a831d0268e9891562113d8a62add1bfA SHA-256 hash of the item.
  • last-modified2026-09-05T11:30:16.332ZThe date this item was last modified.
2024-10-29