List Transformation errors
Lists all errors encountered while attempting to transform data, with either pagination or specific reference IDs.
Authorization
API Key Authenticate using API Key in request header
In: header
Query Parameters
This specifies a limit on the number of objects to return, ranging between 1 and 100.
501 <= value <= 100Specifies sorting behavior. The two options are asc and desc to sort ascending and descending respectively, with default sort being ascending. Paging works in both directions.
"asc""asc" | "desc"A cursor to use in pagination. startingAfter is a transform ID that defines your place in the list. For example, if you make a list request and receive 50 objects, ending with tr_2bxoJPNdSD4LgRT4YVC4gt72hlI, your subsequent call can include startingAfter=tr_2bxoJPNdSD4LgRT4YVC4gt72hlI to fetch the next page of the list.
A cursor to use in pagination. endingBefore is a transform ID that defines your place in the list. For example, if you make a list request and receive 50 objects, starting with tr_2bxoJPNdSD4LgRT4YVC4gt72hlI, your subsequent call can include endingBefore=tr_2bxoJPNdSD4LgRT4YVC4gt72hlI to fetch the previous page of the list.
The unique ID for a given pipeline. Will filter to just the transformations processed by the given pipeline. If left out, will query over ALL transformations for your account.
Array with the reference IDs of the transformed data points. Formatted as a CSV array.
1 <= itemsArray with the function IDs to filter transformation errors by. Formatted as a CSV array.
1 <= itemsArray with the function names to filter transformation errors by. Formatted as a CSV array.
1 <= itemsArray with the event IDs to filter transformation errors by. Formatted as a CSV array.
1 <= itemsResponse Body
application/json
curl -X GET "https://api.bem.ai/v1-beta/transformations/errors?referenceIDs=string"{
"totalCount": 0,
"transformationErrors": [
{
"transformationErrorID": "string",
"pipelineID": "string",
"referenceID": "string",
"timestamp": "2019-08-24T14:15:22Z",
"message": "string",
"eventID": "evt_2bxoJPNdSD4LgRT4YVC4gt72hlI",
"functionID": "f_2bxoUSASD7LPqz4YVC9jt38ZtZ",
"functionName": "transform_invoice"
}
]
}