POST eo-members/clubs?ClientId={ClientId}&user_id={user_id}
Add Club 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
Club Request object
Name | Description | Type | Additional information |
---|---|---|---|
CountryId | integer |
Required |
|
Name | string |
Required |
|
City | string |
Required |
Request Formats
application/json, text/json
Sample:
{ "CountryId": 1, "Name": "sample string 2", "City": "sample string 3" }
application/xml, text/xml
Sample:
<ClubsRequest xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <CountryId>1</CountryId> <Name>sample string 2</Name> <City>sample string 3</City> </ClubsRequest>
Response Information
Resource Description
Name | Description | Type | Additional information |
---|---|---|---|
CountryId | integer |
Required |
|
Name | string |
Required |
|
City | string |
Required |
Response Formats
application/json, text/json
Sample:
{ "CountryId": 1, "Name": "sample string 2", "City": "sample string 3" }
application/xml, text/xml
Sample:
<ClubsRequest xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <CountryId>1</CountryId> <Name>sample string 2</Name> <City>sample string 3</City> </ClubsRequest>