DELETE /plugins/{pluginId}/entities/{entityId}/data/{key}

Delete a data value for your plugin associated with the entity from the tadatodo keystore.

Path parameters

  • pluginId string Required

    Your plugin's ID

  • entityId string Required

    The associated Entity ID

  • key string Required

    The url-safe, unique key for this plugin and entity

Responses

  • 200
    Hide response attribute Show response attribute object
    • message string Required

      The success message

DELETE /plugins/{pluginId}/entities/{entityId}/data/{key}
curl \
 --request DELETE 'https://tadatodo.com/api/plugins/Ple77f34bbf9/entities/Eae77f34bbf9/data/myUrlSafeKey' \
 --header "X-Plugin-Secret: $API_KEY"
Response examples (200)
{
  "message": "success"
}