GET /plugins/{pluginId}/data/{key}

Retrieve a unique data value for your plugin from the tadatodo keystore.

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

Path parameters

  • key string Required

    The url-safe, unique key for this plugin

  • pluginId string Required

    Your plugin's ID

  • entityId string Required

    The associated Entity ID

Responses

  • 200
    Hide response attribute Show response attribute object
    • value string
GET /plugins/{pluginId}/data/{key}
curl \
 --request GET 'https://tadatodo.com/api/plugins/Ple77f34bbf9/data/myUrlSafeKey' \
 --header "X-Plugin-Secret: $API_KEY"
Response examples (200)
{
  "value": "string"
}