Resource for Usersnap integration
Get the Usersnap settings
code | condition |
---|---|
200 | Usersnap settings are returned. |
401 | No valid sid and session secret cookie were provided. |
403 | User has insufficient permissions. |
405 | Feature usersnap is not activated. |
media type | data type | description |
---|---|---|
application/json | UsersnapResponse (JSON) | response containing the Usersnap settings |
GET /usersnap Accept: application/json
HTTP/1.1 200 OK
Content-Type: application/json
{
"settings" : { },
"messages" : [ {
"fieldName" : "...",
"message" : "...",
"type" : "CRITICAL",
"timestamp" : 12345,
"image" : "...",
"sender" : {
"id" : 12345,
"firstName" : "...",
"lastName" : "...",
"description" : "...",
"email" : "...",
"groups" : [ { }, { } ],
"login" : "...",
"password" : "..."
},
"id" : 12345
}, {
"fieldName" : "...",
"message" : "...",
"type" : "NEUTRAL",
"timestamp" : 12345,
"image" : "...",
"sender" : {
"id" : 12345,
"firstName" : "...",
"lastName" : "...",
"description" : "...",
"email" : "...",
"groups" : [ { }, { } ],
"login" : "...",
"password" : "..."
},
"id" : 12345
} ],
"responseInfo" : {
"responseCode" : "OK",
"responseMessage" : "...",
"property" : "..."
}
}