POST
/
connections
/
applications
curl --request POST \
--url http://localhost/api/v1/connections/applications \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"appid": "my-app-id",
"connection_type": "basic_auth",
"credentials": {
"username": "my-username",
"password": "my-password"
},
"shared": true
}'
{
  "status": "success",
  "message": "Connection created successfully.",
  "connection_id": "123e4567-e89b-12d3-a456-426614174000"
}

Authorizations

Authorization
string
header
required

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

Body

application/json

Response

200
application/json

Connection created successfully.

The response is of type object.