POST
/
projects
/
{projectIdOrName}
/
integrations
/
{integrationId}
/
revisions
curl --request POST \
  --url https://api.withampersand.com/v1/projects/{projectIdOrName}/integrations/{integrationId}/revisions \
  --header 'Content-Type: application/json' \
  --header 'X-Api-Key: <api-key>' \
  --data '{
  "sourceZipUrl": "<string>",
  "sourceYaml": "<string>"
}'
This response has no body data.

Authorizations

X-Api-Key
string
header
required

Path Parameters

projectIdOrName
string
required
integrationId
string
required

Body

application/json

The source of the revision to create. One of sourceZipUrl or sourceYaml is required.

sourceZipUrl
string

URL of where a zip of the source files can be downloaded (e.g. Google Cloud Storage URL).

sourceYaml
string

The source YAML file that defines the revision.