POST contact/add-group
Request Information
URI Parameters
None.
Body Parameters
AddGroupRequestModel| Name | Description | Type | Additional information |
|---|---|---|---|
| UserId | integer |
None. |
|
| GroupName | string |
None. |
|
| GroupId | integer |
None. |
|
| ContactIds | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"UserId": 1,
"GroupName": "sample string 2",
"GroupId": 3,
"ContactIds": "sample string 4"
}
text/html
Sample:
{"UserId":1,"GroupName":"sample string 2","GroupId":3,"ContactIds":"sample string 4"}
application/xml, text/xml
Sample:
<AddGroupRequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FlyKitAPI.Models"> <ContactIds>sample string 4</ContactIds> <GroupId>3</GroupId> <GroupName>sample string 2</GroupName> <UserId>1</UserId> </AddGroupRequestModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
AppCommonResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| responsecode | integer |
None. |
|
| message | string |
None. |
|
| data | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"responsecode": 1,
"message": "sample string 2",
"data": {}
}
text/html
Sample:
{"responsecode":1,"message":"sample string 2","data":{}}
application/xml, text/xml
Sample:
<AppCommonResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FlyKitAPI.Models"> <data /> <message>sample string 2</message> <responsecode>1</responsecode> </AppCommonResponse>