CRM360° CustomerApi Documentation

Customer - PurchaseGoodType

PurchaseGoodType entities

Required HTTP Headers

  • X-Crm360Api-Token
  • X-Crm360Api-CustomerName
  • X-Crm360Api-DatabaseAlias

Functions

Entity Properties

Name Type Is Mandatory
PurchaseGoodTypeId Int16
Label String
DeletionFlag Boolean
PurchaseGoods Collection of PurchaseGood
PurchaseGoodTypeTranslations Collection of PurchaseGoodTypeTranslation

Examples

Select all PurchaseGoodTypes

https://customerapi.fts-crm360.com/data/PurchaseGoodTypes()
HttpMethod : GET
Json Result :
[ { "PurchaseGoodTypeId" : "8", "Label" : "KKvoJE", "DeletionFlag" : "True" }, { "PurchaseGoodTypeId" : "8", "Label" : "kwsV1r6 DpUID", "DeletionFlag" : "False" }, ... ]

Select PurchaseGoodType by Id

https://customerapi.fts-crm360.com/data/PurchaseGoodTypes(8)
HttpMethod : GET
Json Result :
{ "PurchaseGoodTypeId" : "2", "Label" : "J02i0", "DeletionFlag" : "True" }

Create a PurchaseGoodType

https://customerapi.fts-crm360.com/data/PurchaseGoodTypes()
HttpMethod : POST
Json Post :
{
"Label" : "6R90jGt6mPRa f",
"DeletionFlag" : "True"
}
            
Informations :
- Non mandatory fields are optional for Json Post

Update a PurchaseGoodType

https://customerapi.fts-crm360.com/data/PurchaseGoodTypes(8)
HttpMethod : PUT
Json Post :
{
"PurchaseGoodTypeId" : "1",
"Label" : "D376h9GUmn",
"DeletionFlag" : "True"
}
            
Informations :
- Non mandatory fields are optional for Json Post

Patch a PurchaseGoodType

https://customerapi.fts-crm360.com/data/PurchaseGoodTypes(8)
HttpMethod : PATCH
Json Post :
{
"Label" : "PPu1IxD2"
}
            
Informations :
- Non mandatory fields are optional for Json Post

Delete a PurchaseGoodType

https://customerapi.fts-crm360.com/data/PurchaseGoodTypes(8)
HttpMethod : DELETE

Translate a PurchaseGoodType label

https://customerapi.fts-crm360.com/data/PurchaseGoodTypes(8)/Label
HttpMethod : GET
Required Fields :
Http Header for language : X-Crm360Api-Language-3