Create an RCC Relation

Creates a new schema definition for creating a new RCC relation.

🚧

Authentication

All BigPanda APIs require Bearer Token Authorization in the call headers.

This API uses the User API Key type of Authorization token.

Sample Calls

curl --request POST \
     --url https://api.bigpanda.io/resources/v2.0/rcc/ \
     --header 'Content-Type: application/json' \
     --header 'Authorization: Bearer <USER API KEY>' \
     --header ' x-bp-app-key: <APP_KEY>' \
     --data '{
"change_id": "5dcb27ccbc5b3e3",
"incident_id": "5e0b5de5d47a7fa",
"comment": "YourComment",
"match_certainty": "SUSPECT"
}'
curl --request POST \
     --url https://eu-api.bigpanda.io/resources/v2.0/rcc/ \
     --header 'Content-Type: application/json' \
     --header 'Authorization: Bearer <USER API KEY>' \
     --header ' x-bp-app-key: <APP_KEY>' \
     --data '{
"change_id": "5dcb27ccbc5b3e3",
"incident_id": "5e0b5de5d47a7fa",
"comment": "YourComment",
"match_certainty": "SUSPECT"
}'
Language