Skip to main content
PUT
/
projects
/
{project_reference}
/
integrations
/
{name}
Upsert Project Integration
curl --request PUT \
  --url https://api.veryfront.com/projects/{project_reference}/integrations/{name} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "enabled": true,
  "scope": "project",
  "allowed_tools": [
    "<string>"
  ]
}
'
{
  "error": "<string>",
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

project_reference
string
required
name
string
required

Body

application/json
enabled
boolean
required
scope
enum<string>
required
Available options:
project,
endUser
allowed_tools
string[] | null
required

Response

Project integration updated