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": "572c24cb-2841-46b1-bf39-e550b91020eb",
"ProductID": "95e3d488-6af0-476e-aaf7-f3ceea9494e3",
"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>572c24cb-2841-46b1-bf39-e550b91020eb</MemberID> <Note>sample string 3</Note> <ProductID>95e3d488-6af0-476e-aaf7-f3ceea9494e3</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.