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

Set a data value for your plugin associated with the entity into the tadatodo keystore.

Note: data is stored as a string, so marshal data as needed.

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

Body

  • value string Required

    The value to be stored

    Maximum length is 5000.

Responses

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

      The success message

PUT /plugins/{pluginId}/entities/{entityId}/data/{key}
curl \
 --request PUT 'https://tadatodo.com/api/plugins/Ple77f34bbf9/entities/Eae77f34bbf9/data/myUrlSafeKey' \
 --header "X-Plugin-Secret: $API_KEY" \
 --data '{"value":"my data that needs to be marshalled to a string"}'
Request examples
{
  "value": "my data that needs to be marshalled to a string"
}
Response examples (200)
{
  "message": "success"
}