Object-Based DELETE

URL
DELETE https://api.knack.com/v1/objects/object_xx/records/record_ID

Parameters

Parameter Explanation Example
object_xx object key object_1
record_ID Knack record ID 575482d691e16d4235adcdb6

ParameterExplanationExample
object_xxobject keyobject_1
record_IDKnack record ID575482d691e16d4235adcdb6

Headers

KeyValue
X-Knack-Application-IdYour application ID
X-Knack-REST-API-KEYYour API key

Example Request

curl -X DELETE "https://api.knack.com/v1/objects/object_1/records/58645233669adec2460888c4"
  -H "X-Knack-Application-Id: YOUR-APP-ID" \
  -H "X-Knack-REST-API-Key: YOUR-API-KEY"

Example Response (200 OK)

{
  "delete": true
}

What’s Next