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
-
Your plugin's ID
-
The associated Entity ID
-
The url-safe, unique key for this plugin and entity
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"
}