POST api/v1/ClientFeedback
Post feedback
Request Information
URI Parameters
None.
Body Parameters
ClientFeedbackRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| JobID |
TBR Identifier for jobs, for which the feedback relates. |
integer |
None. |
| Description |
Description of Feedback |
string |
None. |
| ExtUserID |
External User ID (for audit purposes) in the querying system. |
string |
Required |
Request Formats
application/json, text/json
Sample:
{
"jobID": 1,
"description": "sample string 2",
"extUserID": "sample string 3"
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ClientFeedback| Name | Description | Type | Additional information |
|---|---|---|---|
| Description |
Feedback Description |
string |
None. |
| JobID |
Job ID |
integer |
None. |
| ExtRefID |
An external reference provided by you returned to you. This should not be visible to the end user and only serves the purpose to link up different system. |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"description": "sample string 1",
"jobID": 2,
"extRefID": "sample string 3"
}