Skip to main content
DELETE
endpoint
/api/v1/sisd/:id
Delete an SI/SD record from Forerunner.

Path Parameters

id
string
required
The UUID of the SI/SD record to delete

Response

Returns a 400 status with an error if the SI/SD record does not exist:
{
  "errors": [{ "field": "id", "message": "Improvement not found" }],
  "property": null
}
property
object
Property information and warnings
curl -X DELETE https://app.withforerunner.com/api/v1/sisd/a1b2c3d4-e5f6-7890-abcd-ef1234567890 \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "property": {
    "warnings": []
  },
  "errors": []
}