POST api/member-products/purchase
Request Information
URI Parameters
None.
Body Parameters
MemberProductPurchaseDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| MemberID | globally unique identifier |
None. |
|
| ProductID | globally unique identifier |
None. |
|
| Note | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"MemberID": "6288ac3c-e83e-4f1e-834e-0b02156c1e19",
"ProductID": "a2003821-a6e6-4661-9af8-bd3fe4805160",
"Note": "sample string 3"
}
application/xml, text/xml
Sample:
<MemberProductPurchaseDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AIProject.API.Models.DTO"> <MemberID>6288ac3c-e83e-4f1e-834e-0b02156c1e19</MemberID> <Note>sample string 3</Note> <ProductID>a2003821-a6e6-4661-9af8-bd3fe4805160</ProductID> </MemberProductPurchaseDTO>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.