curl --request POST \
--url https://{cluster}.cognitedata.com/api/v1/projects/{project}/writeback/sap/endpoints/byids \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"items": [
{
"externalId": "my.known.id"
}
],
"ignoreUnknownIds": true
}
'{
"items": [
{
"externalId": "my.known.id",
"endpointType": "notification",
"instanceId": "<string>",
"createdTime": 1730204346000,
"lastUpdatedTime": 1730204346000,
"mappingId": "<string>"
}
]
}Required capabilities:
SapWritebackAcl:READ
Retrieve a list of up to 100 SAP endpoints by their external ID, optionally ignoring unknown IDs.
curl --request POST \
--url https://{cluster}.cognitedata.com/api/v1/projects/{project}/writeback/sap/endpoints/byids \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"items": [
{
"externalId": "my.known.id"
}
],
"ignoreUnknownIds": true
}
'{
"items": [
{
"externalId": "my.known.id",
"endpointType": "notification",
"instanceId": "<string>",
"createdTime": 1730204346000,
"lastUpdatedTime": 1730204346000,
"mappingId": "<string>"
}
]
}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.
List of external IDs of SAP endpoint configurations to retrieve.
List of retrieved SAP endpoint configurations.
100Show child attributes
Was this page helpful?