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" : "1", "Label" : "mq1QbuDr8tLpMFD2L", "DeletionFlag" : "False" }, { "PurchaseGoodTypeId" : "3", "Label" : "4Yc3SOZnE qsX", "DeletionFlag" : "True" }, ... ]

Select PurchaseGoodType by Id

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

Create a PurchaseGoodType

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

Update a PurchaseGoodType

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

Patch a PurchaseGoodType

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

Delete a PurchaseGoodType

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

Translate a PurchaseGoodType label

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