Update an RCC Relation

Updates a specific 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 PUT \
     --url https://api.bigpanda.io/resources/v2.0/rcc/5e20dd3aa \
     --header 'Content-Type: application/json' \
     --header 'Authorization: Bearer <USER API KEY>' \
     --header 'x-bp-app-key: <your app key>' \
     --data '{
"comment": "YourComment",
"match_certainty": "SUSPECT"
}'
curl --request PUT \
     --url https://eu-api.bigpanda.io/resources/v2.0/rcc/5e20dd3aa \
     --header 'Content-Type: application/json' \
     --header 'Authorization: Bearer <USER API KEY>' \
     --header 'x-bp-app-key: <your app key>' \
     --data '{
"comment": "YourComment",
"match_certainty": "SUSPECT"
}'
Language