GET
/
v1
/
integrations
/
{integration_id}
Get integration details
curl --request GET \
  --url https://api.incredible.one/v1/integrations/{integration_id}
{
  "id": "gmail",
  "name": "Gmail",
  "description": "Gmail integration for sending and managing emails",
  "logo_url": "https://example.com/gmail-logo.png",
  "app_url": "https://gmail.com",
  "features": [
    {
      "name": "GMAIL_SEND_EMAIL",
      "description": "Send an email via Gmail",
      "parameters": {
        "to": "string",
        "subject": "string",
        "body": "string"
      }
    }
  ],
  "auth_method": "OAUTH2"
}
{
  "id": "gmail",
  "name": "Gmail",
  "description": "Gmail integration for sending and managing emails",
  "logo_url": "https://example.com/gmail-logo.png",
  "app_url": "https://gmail.com",
  "features": [
    {
      "name": "GMAIL_SEND_EMAIL",
      "description": "Send an email via Gmail",
      "parameters": {
        "to": "string",
        "subject": "string",
        "body": "string"
      }
    }
  ],
  "auth_method": "OAUTH2"
}
integration_id
string
required
The unique identifier of the integration (e.g., “gmail”, “perplexity”)

Path Parameters

integration_id
string
required

The unique identifier of the integration

Response

Integration details retrieved successfully

The response is of type object.