arcade-dev · Example Payload

Arcade Tools List Example

Arcade Tools List Example is an example object payload from arcade-dev, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

itemspage

Example Payload

Raw ↑
{
  "items": [
    {
      "name": "Google.SendEmail",
      "fully_qualified_name": "Google.SendEmail@1.0.0",
      "description": "Send an email via the authenticated user's Gmail account.",
      "toolkit": {
        "name": "Google",
        "version": "1.0.0"
      },
      "requirements": {
        "authorization": {
          "provider_id": "google",
          "scopes": [
            "https://www.googleapis.com/auth/gmail.send"
          ]
        }
      }
    },
    {
      "name": "Slack.PostMessage",
      "fully_qualified_name": "Slack.PostMessage@1.0.0",
      "description": "Post a message to a Slack channel as the authenticated user.",
      "toolkit": {
        "name": "Slack",
        "version": "1.0.0"
      }
    }
  ],
  "page": {
    "limit": 25,
    "offset": 0,
    "total_count": 7042
  }
}