Skip to main content
POST
/
api
/
v1
/
integrations
/
sentry
/
save
Save Sentry Integration
curl --request POST \
  --url https://api.example.com/api/v1/integrations/sentry/save \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "code": "<string>",
  "redirect_uri": "<string>",
  "instance_name": "<string>",
  "timestamp": "<string>",
  "integration_type": "sentry"
}
'
{
  "success": true,
  "data": {},
  "error": "<string>"
}

Authorizations

Authorization
string
header
required

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

Body

application/json

Request to save Sentry integration with authorization code

code
string
required

OAuth authorization code from Sentry

redirect_uri
string
required

OAuth redirect URI used during authorization

instance_name
string
required

User-defined name for this integration instance

timestamp
string
required

ISO timestamp when the integration was created

integration_type
string
default:sentry

Type of integration

Response

Successful Response

Response after successfully saving Sentry integration

success
boolean
required

Whether the operation was successful

data
Data · object

Integration data if successful

error
string | null

Error message if operation failed