| GET,OPTIONS | /v1/staff/outreach/responses |
|---|
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| PlaceholderContactID | query | int | No |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| ResponseStatus | form | ResponseStatus | No | |
| Responses | form | List<StaffResponseDto> | No | |
| SentCount | form | int | No | |
| OpenedCount | form | int | No | |
| ClickedCount | form | int | No | |
| Accepted | form | int | No | |
| Question | form | int | No | |
| Declined | form | int | No | |
| NoReply | form | int | No |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| StaffOutreachRecipientID | form | int | No | |
| ContactID | form | int | No | |
| Name | form | string | No | |
| Kind | form | string | No | |
| Rate | form | decimal | No | |
| Rating | form | decimal | No | |
| RatingCount | form | int | No | |
| Status | form | string | No | |
| Note | form | string | No | |
| CounterRate | form | decimal | No | |
| CounterStartDate | form | string | No |
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /v1/staff/outreach/responses HTTP/1.1 Host: api.dev.dynamics.trendsic.com Accept: text/jsv
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length
{
ResponseStatus:
{
ErrorCode: String,
Message: String,
StackTrace: String,
Errors:
[
{
ErrorCode: String,
FieldName: String,
Message: String,
Meta:
{
String: String
}
}
],
Meta:
{
String: String
}
},
Responses:
[
{
StaffOutreachRecipientID: 0,
ContactID: 0,
Name: String,
Kind: String,
Rate: 0,
Rating: 0,
RatingCount: 0,
Status: String,
Note: String,
CounterRate: 0,
CounterStartDate: String
}
],
SentCount: 0,
OpenedCount: 0,
ClickedCount: 0,
Accepted: 0,
Question: 0,
Declined: 0,
NoReply: 0
}