curl --request POST \
--url https://{cluster}.cognitedata.com/api/v1/projects/{project}/writeback/sap/requests/byids \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"items": [
{
"requestId": "<string>"
}
],
"ignoreUnknownIds": true
}
'{
"items": [
{
"requestId": "<string>",
"request": [
{
"payload": {},
"key": "<string>",
"sapObjectId": "<string>"
}
],
"status": "pending",
"createdTime": 1730204346000,
"lastUpdatedTime": 1730204346000,
"errorMessage": "<string>"
}
]
}Required capabilities:
SapWritebackRequestsAcl:WRITE
Retrieve a list of up to 100 writeback requests by their external ID, optionally ignoring unknown IDs.
curl --request POST \
--url https://{cluster}.cognitedata.com/api/v1/projects/{project}/writeback/sap/requests/byids \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"items": [
{
"requestId": "<string>"
}
],
"ignoreUnknownIds": true
}
'{
"items": [
{
"requestId": "<string>",
"request": [
{
"payload": {},
"key": "<string>",
"sapObjectId": "<string>"
}
],
"status": "pending",
"createdTime": 1730204346000,
"lastUpdatedTime": 1730204346000,
"errorMessage": "<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 writeback requests to retrieve.
List of retrieved writeback requests.
100Show child attributes
Was this page helpful?