POST api/Product
Create a product.
Request Information
URI Parameters
None.
Body Parameters
CreateProductModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Name |
The product name as the user will see it. |
string |
Required |
| Code |
I don't know! |
string |
Required |
| Abbreviation |
Not really sure, for the most part it looks the same as Name. |
string |
Required |
| Active |
Only active products shown to end users. Required. |
boolean |
Required |
| Exempt |
Exempt products don't apply to CCPa law. Required. |
boolean |
Required |
| TrustArcFormId |
Not required. |
globally unique identifier |
None. |
| ClientSystemId |
Required. |
globally unique identifier |
Required |
| IDologyEnterpriseId |
Required. |
globally unique identifier |
Required |
| SubCategoryId |
Not required. |
globally unique identifier |
None. |
| ModifiedBy |
An identifier for the user that altered this product. |
string |
Required |
Request Formats
application/json, text/json
Sample:
{
"Name": "sample string 1",
"Code": "sample string 2",
"Abbreviation": "sample string 3",
"Active": true,
"Exempt": true,
"TrustArcFormId": "8a6d29d0-74c1-4c7c-962b-bf54428dd8a7",
"ClientSystemId": "479668e1-c2a2-46d1-a5dd-551a5ecd16f1",
"IDologyEnterpriseId": "077d4829-798e-4b32-9252-ccc2678b76a4",
"SubCategoryId": "c3a4ecfa-01db-4c28-8e59-58adf3e7b7df",
"ModifiedBy": "sample string 6"
}
text/xml
Sample:
<CreateProductModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Privacy.Proc.API.Models.Product"> <Abbreviation>sample string 3</Abbreviation> <Active>true</Active> <ClientSystemId>479668e1-c2a2-46d1-a5dd-551a5ecd16f1</ClientSystemId> <Code>sample string 2</Code> <Exempt>true</Exempt> <IDologyEnterpriseId>077d4829-798e-4b32-9252-ccc2678b76a4</IDologyEnterpriseId> <ModifiedBy>sample string 6</ModifiedBy> <Name>sample string 1</Name> <SubCategoryId>c3a4ecfa-01db-4c28-8e59-58adf3e7b7df</SubCategoryId> <TrustArcFormId>8a6d29d0-74c1-4c7c-962b-bf54428dd8a7</TrustArcFormId> </CreateProductModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
booleanResponse Formats
application/json, text/json
Sample:
true
text/xml
Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>