curl --request POST \
--url https://{cluster}.cognitedata.com/api/v1/projects/{project}/writeback/sap/endpoints/delete \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"items": [
{
"externalId": "my.known.id"
}
],
"ignoreUnknownIds": true
}
'{}Required capabilities:
SapWritebackAcl:WRITE
Delete a list of SAP endpoint configurations by their external ID. This operation will fail if any endpoint in the request is associated to a SAP instance configuration.
curl --request POST \
--url https://{cluster}.cognitedata.com/api/v1/projects/{project}/writeback/sap/endpoints/delete \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"items": [
{
"externalId": "my.known.id"
}
],
"ignoreUnknownIds": true
}
'{}Access token issued by the CDF project's configured identity provider. Access token must be an OpenID Connect token, and the project must be configured to accept OpenID Connect tokens. Use a header key of 'Authorization' with a value of 'Bearer $accesstoken'. The token can be obtained through any flow supported by the identity provider.
A list of External IDs for SAP endpoint configurations to delete.
Empty response
The response is of type object.
Was this page helpful?