Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

Appends a custom message to the log. Normally, logs are populated with each push operation. In certain integration scenarios you may want to add additional log entries.

URL

(POST) /api/apps/wbflex/documents/{id}/log

PARAMETERS

URL parameters are:

id

Specify either a document ID (such as 1000) or a job ID (such as c300).

int, Mandatory


The body is a JSON object with these properties:

messagesA JSON array with 1 or more messages.

string[], Mandatory

successIndicate if the event refers to a success or a failure. This helps to understand the purpose of the event

bool, Mandatory

originOptional string. Permits to specify who or what initiated or sent the message. For information purposes only.

string?, Optional


RESULTS

The method returns no result.


EXAMPLES

(POST) /api/apps/wbflex/documents/111/log
BODY:
{
   "messages": ["This is an information", "For no special reason"],
   "success": true,
   "origin": "Administrator"
}




  • No labels