Skip to main content
POST
/
applications
/
{id}
/
internal-connections
Create internal connection
curl --request POST \
  --url https://api.sevalla.com/v2/applications/{id}/internal-connections \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "target_id": "fb5e5168-4281-4bec-94c5-0d1584e9e657",
  "target_type": "dbResource"
}
'
{
  "result": "success"
}

Authorizations

Authorization
string
header
required

API key authentication. Pass your API key as a Bearer token in the Authorization header.

Path Parameters

id
string<uuid>
required

Unique identifier for the source application

Example:

"fb5e5168-4281-4bec-94c5-0d1584e9e657"

Body

application/json
target_id
string<uuid>
required

Unique identifier for the target resource

Example:

"fb5e5168-4281-4bec-94c5-0d1584e9e657"

target_type
enum<string>
required

Type of the target resource (appResource or dbResource)

Available options:
appResource,
dbResource
Example:

"dbResource"

Response

Default Response

result
string
required

Result status of the operation

Example:

"success"