PurchaseGoodType entities
Name | Type | Is Mandatory |
---|---|---|
PurchaseGoodTypeId | Int16 | |
Label | String | |
DeletionFlag | Boolean | |
PurchaseGoods | Collection of PurchaseGood | |
PurchaseGoodTypeTranslations | Collection of PurchaseGoodTypeTranslation |
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