This page was last edited on December 19, 2017, at 11:03.
Comments or questions about this documentation? Contact us for support!
Welcome to the IWD REST API Reference. This guide provides information about how you can use the IWD REST API to incorporate Genesys IWD Manager features into custom applications and integrations with third-party software.
This API is based on HTTP and has some properties of REST.
The API defines the following resources:
Standard REST verbs are used:
If not written explicitly, the Content-Type for requests and responses is "application/json". Error responses may contain a list of messages, for example:
[
{
"severity" : "ERROR",
"message_id" : "MSG_COULD_NOT_LOGIN_TO_PLACE",
"args" :
{
"<name>": "<value>",
...
},
"message": "English message to log/debug"
}
]
Severity may be one of:
message_id is a key that should be replaced with a localized message in the front end.
All date/time values are in ISO8601 format with time zone. The exact supported variants of ISO8601 format are:
Time zone offset is mandatory. Examples:
Additionally, for quick filters in GTL, a shortened, date-only format is allowed:
Time zone offset is optional in this case; if it is missing, the default configured time zone is used. The time returned from the server should be in the configured time zone.
The base address is:
http(s)://<host>:<port>/<path/to/application>/api
where <path/to/application> is a path to the iWD Manager web application. By default it is iwd_manager, but can be different if deployed under another path.
All addresses in this document are based on this address. Addresses returned from the server must contain the whole path, including the /<path/to/application>/api prefix.