I'm experimenting with the OData API and I was wondering what the possible response messages are in case of exceptions / errors.
I found out that there's a response header provided called “TSFMessages”, which is base64 encoded. Decoding this value gives a result like below:
{
"MessageType": "ApplicationDbMessage",
"RawMessage": "<msg id=\"import_error\"></msg>",
"MessageID": null,
"NamedParameters": null
}
Is there an overview of all MessageTypes? E.g. what can I expect? And what do the other parameters do?