CRM360° CustomerApi Documentation

Customer - PurchaseStatus

PurchaseStatus entities

Required HTTP Headers

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

Functions

Entity Properties

Name Type Is Mandatory
PurchaseStatusId Int16
Label String
DeletionFlag Boolean
Accountable Boolean
PurchaseHeaders Collection of PurchaseHeader
PurchaseStatusTranslations Collection of PurchaseStatusTranslation

Examples

Select all PurchaseStatuses

https://customerapi.fts-crm360.com/data/PurchaseStatuses()
HttpMethod : GET
Json Result :
[ { "PurchaseStatusId" : "7", "Label" : "Wo2 i1wVO63Y", "DeletionFlag" : "False", "Accountable" : "True" }, { "PurchaseStatusId" : "6", "Label" : "CaA5d1 o7Ow", "DeletionFlag" : "True", "Accountable" : "True" }, ... ]

Select PurchaseStatus by Id

https://customerapi.fts-crm360.com/data/PurchaseStatuses(7)
HttpMethod : GET
Json Result :
{ "PurchaseStatusId" : "3", "Label" : "ObsQ6yj9HZ8", "DeletionFlag" : "False", "Accountable" : "False" }

Create a PurchaseStatus

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

Update a PurchaseStatus

https://customerapi.fts-crm360.com/data/PurchaseStatuses(7)
HttpMethod : PUT
Json Post :
{
"PurchaseStatusId" : "8",
"Label" : "fzN3T",
"DeletionFlag" : "False",
"Accountable" : "False"
}
            
Informations :
- Non mandatory fields are optional for Json Post

Patch a PurchaseStatus

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

Delete a PurchaseStatus

https://customerapi.fts-crm360.com/data/PurchaseStatuses(7)
HttpMethod : DELETE

Translate a PurchaseStatus label

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