POST api/DiscountCreate
The entry point for creating links to discount groups
Request Information
URI Parameters
None.
Body Parameters
DiscountCreateRequestName | Description | Type | Additional information |
---|---|---|---|
AuthToken |
Your unique partner identification token |
globally unique identifier |
Required |
Group |
The group you wish to add the link to |
Group |
Required |
Link |
The link you wish to add |
Link |
Required |
Request Formats
application/json, text/json
Sample:
{ "authToken": "de8b5287-ee4b-47b4-9ffa-ed69de86b84b", "group": { "uid": "7143d7c5-c76b-4367-bee6-38f375a80eaa" }, "link": { "name": "sample string 1", "external_UID": "sample string 2", "use_Time_Left": 1 } }
application/xml, text/xml
Sample:
<DiscountCreateController.DiscountCreateRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HuurayV3.Controllers"> <AuthToken>de8b5287-ee4b-47b4-9ffa-ed69de86b84b</AuthToken> <Group> <UID>7143d7c5-c76b-4367-bee6-38f375a80eaa</UID> </Group> <Link> <External_UID>sample string 2</External_UID> <Name>sample string 1</Name> <Use_Time_Left>1</Use_Time_Left> </Link> </DiscountCreateController.DiscountCreateRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Object containing the URI of the created link, along with information the partner and group
DiscountCreateResponseName | Description | Type | Additional information |
---|---|---|---|
URI |
The URI to activate the newly created link |
URI | |
AuthToken |
Your unique partner identification token |
globally unique identifier |
Required |
Group |
The group you wish to add the link to |
Group |
Required |
Link |
The link you wish to add |
Link |
Required |
Response Formats
application/json, text/json
Sample:
{ "uri": { "scheme": "sample string 1", "host": "sample string 2", "path": "sample string 3", "queryString": "sample string 4", "fullPath": "sample string 5" }, "authToken": "c4e8426f-cba8-457b-8b28-241c445181fb", "group": { "uid": "a37284cf-29a3-43b0-873a-5cea78a307b2" }, "link": { "name": "sample string 1", "external_UID": "sample string 2", "use_Time_Left": 1 } }
application/xml, text/xml
Sample:
<DiscountCreateController.DiscountCreateResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HuurayV3.Controllers"> <AuthToken>c4e8426f-cba8-457b-8b28-241c445181fb</AuthToken> <Group> <UID>a37284cf-29a3-43b0-873a-5cea78a307b2</UID> </Group> <Link> <External_UID>sample string 2</External_UID> <Name>sample string 1</Name> <Use_Time_Left>1</Use_Time_Left> </Link> <URI> <FullPath>sample string 5</FullPath> <Host>sample string 2</Host> <Path>sample string 3</Path> <QueryString>sample string 4</QueryString> <Scheme>sample string 1</Scheme> </URI> </DiscountCreateController.DiscountCreateResponse>