Error handling

Retrieving a record that does not exist

Request

{
    "method": "GET",
    "records": {
        "1": [
            {
                "id":999999
            }
        ]
    }
}

Response

{
    "batchId": 130625454,
    "batchStatus": "Complete",
    "batchResults": {
        "records": {
            "1": [
                {
                    "code": 404,
                    "message": "Record Not Found.",
                    "id": 999999
                }
            ]
        },
        "relationships": []
    }
}

Executing a workflow action that is not available from the current status

Request

Response

Creating a relationship where one of the records does not exist

Request

Response

Last updated

Was this helpful?