POST eo-members/geography?ClientId={ClientId}&user_id={user_id}
Add Geography information for particular User Id
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| ClientId |
ClientId |
string |
Required |
| user_id |
User Id |
globally unique identifier |
Required |
Body Parameters
Geography Request object
| Name | Description | Type | Additional information |
|---|---|---|---|
| CountryId | integer |
Required |
|
| SpecificLocation | string |
Required |
|
| SpecialKnowledge | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"CountryId": 1,
"SpecificLocation": "sample string 2",
"SpecialKnowledge": "sample string 3"
}
application/xml, text/xml
Sample:
<GeographyRequest xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <CountryId>1</CountryId> <SpecificLocation>sample string 2</SpecificLocation> <SpecialKnowledge>sample string 3</SpecialKnowledge> </GeographyRequest>
Response Information
Resource Description
| Name | Description | Type | Additional information |
|---|---|---|---|
| CountryId | integer |
Required |
|
| SpecificLocation | string |
Required |
|
| SpecialKnowledge | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"CountryId": 1,
"SpecificLocation": "sample string 2",
"SpecialKnowledge": "sample string 3"
}
application/xml, text/xml
Sample:
<GeographyRequest xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <CountryId>1</CountryId> <SpecificLocation>sample string 2</SpecificLocation> <SpecialKnowledge>sample string 3</SpecialKnowledge> </GeographyRequest>