CRM360° CustomerApi Documentation

Customer - LoyaltyPointType

LoyaltyPointType entities

Required HTTP Headers

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

Functions

Entity Properties

Name Type Is Mandatory
LoyaltyPointTypeId Int16
Label String
DeletionFlag Boolean
LoyaltyPoints Collection of LoyaltyPoint
LoyaltyPointTypeTranslations Collection of LoyaltyPointTypeTranslation

Examples

Select all LoyaltyPointTypes

https://customerapi.fts-crm360.com/data/LoyaltyPointTypes()
HttpMethod : GET
Json Result :
[ { "LoyaltyPointTypeId" : "1", "Label" : "rlSi NaM", "DeletionFlag" : "True" }, { "LoyaltyPointTypeId" : "6", "Label" : "IJGowgYM0jzU", "DeletionFlag" : "False" }, ... ]

Select LoyaltyPointType by Id

https://customerapi.fts-crm360.com/data/LoyaltyPointTypes(1)
HttpMethod : GET
Json Result :
{ "LoyaltyPointTypeId" : "6", "Label" : "R RIYFdm7SPoEh64", "DeletionFlag" : "True" }

Create a LoyaltyPointType

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

Update a LoyaltyPointType

https://customerapi.fts-crm360.com/data/LoyaltyPointTypes(1)
HttpMethod : PUT
Json Post :
{
"LoyaltyPointTypeId" : "5",
"Label" : "K6mXI GBresdRuGTo4d",
"DeletionFlag" : "True"
}
            
Informations :
- Non mandatory fields are optional for Json Post

Patch a LoyaltyPointType

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

Delete a LoyaltyPointType

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

Translate a LoyaltyPointType label

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