POST
/
v1
/
relationship
/
resource-to-resource
curl --request POST \
  --url https://api.ctrlplane.dev/api/v1/relationship/resource-to-resource \
  --header 'Content-Type: application/json' \
  --data '{
  "workspaceId": "123e4567-e89b-12d3-a456-426614174000",
  "fromIdentifier": "my-resource",
  "toIdentifier": "my-resource",
  "type": "depends_on"
}'
{
  "message": "Relationship created successfully"
}

Body

application/json
workspaceId
string
required

The workspace ID

Example:

"123e4567-e89b-12d3-a456-426614174000"

fromIdentifier
string
required

The identifier of the resource to connect

Example:

"my-resource"

toIdentifier
string
required

The identifier of the resource to connect to

Example:

"my-resource"

type
string
required

The type of relationship

Example:

"depends_on"

Response

200
application/json
Relationship created
message
string
Example:

"Relationship created successfully"