Skip to main content
PATCH
/
integrations
/
{id}
Update Integration
curl --request PATCH \
  --url https://hub.griff.services/integrations/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "config": {
    "providerType": "email",
    "fromAddress": "<string>",
    "fromName": "<string>",
    "replyTo": "<string>"
  },
  "connectionId": "<string>",
  "environment": "<string>",
  "enabled": true
}
'
{
  "data": {
    "id": "<string>",
    "organizationId": "<string>",
    "category": "notifications",
    "provider": "aws",
    "name": "<string>",
    "hasCredentials": true,
    "enabled": true,
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z",
    "connectionId": "<string>",
    "config": {
      "providerType": "email",
      "fromAddress": "<string>",
      "fromName": "<string>",
      "replyTo": "<string>"
    },
    "environment": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Body

application/json
name
string
config
object
connectionId
string | null
environment
string | null
enabled
boolean

Response

Default Response

data
Integration · object
required