Integration delivery configurations (beta)
Create delivery configuration
Create a delivery configuration.
post/api/v2/integration-capabilities/featureStore/{projectKey}/{environmentKey}/{integrationKey}
Path parameters
projectKeystring string required
The project key
The project key
environmentKeystring string required
The environment key
The environment key
integrationKeystring string required
The integration key
The integration key
Request body
Example request
{
"tags": [
"example-tag"
],
"name": "Sample integration"
}Response
Integration delivery configuration response
Example response
{
"_id": "12ab3c4d5ef1a2345bcde67f",
"integrationKey": "example-integration-key",
"projectKey": "default",
"environmentKey": "development",
"on": true,
"tags": [],
"name": "Development environment configuration",
"version": 1,
"_access": {
"denied": [
{
"reason": {
"resources": [
"proj/*:env/*;qa_*:/flag/*"
],
"actions": [
"*"
],
"effect": "allow"
}
}
],
"allowed": [
{
"reason": {
"resources": [
"proj/*:env/*;qa_*:/flag/*"
],
"actions": [
"*"
],
"effect": "allow"
}
}
]
}
}