PUT api/content/v4/reporttheactivity
Request Information
URI Parameters
None.
Body Parameters
APIReportActivityRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| CustomerId | integer |
None. |
|
| ContactId | integer |
None. |
|
| SelectReason | integer |
None. |
|
| ReportedContact | integer |
None. |
|
| CheckInId | integer |
None. |
|
| UniqueId | globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{
"CustomerId": 1,
"ContactId": 2,
"SelectReason": 3,
"ReportedContact": 4,
"CheckInId": 5,
"UniqueId": "24f63e0c-053b-4fe7-ba7f-2676ba503f47"
}
application/xml, text/xml
Sample:
<APIReportActivityRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/"> <CheckInId>5</CheckInId> <ContactId>2</ContactId> <CustomerId>1</CustomerId> <ReportedContact>4</ReportedContact> <SelectReason>3</SelectReason> <UniqueId>24f63e0c-053b-4fe7-ba7f-2676ba503f47</UniqueId> </APIReportActivityRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
APICommonWrapperOfBoolean| Name | Description | Type | Additional information |
|---|---|---|---|
| Status | HttpStatusCode |
None. |
|
| Message | string |
None. |
|
| Data | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"Status": 100,
"Message": "sample string 1",
"Data": true
}
application/xml, text/xml
Sample:
<APICommonWrapperOfboolean xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tsunami.Model"> <Data>true</Data> <Message>sample string 1</Message> <Status>Continue</Status> </APICommonWrapperOfboolean>