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" : "5", "Label" : "b rh6jqLEnTZ", "DeletionFlag" : "True" }, { "LoyaltyPointTypeId" : "4", "Label" : "JxUfa", "DeletionFlag" : "True" }, ... ]

Select LoyaltyPointType by Id

https://customerapi.fts-crm360.com/data/LoyaltyPointTypes(5)
HttpMethod : GET
Json Result :
{ "LoyaltyPointTypeId" : "6", "Label" : "p1WxpHzwZd 4jn", "DeletionFlag" : "False" }

Create a LoyaltyPointType

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

Update a LoyaltyPointType

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

Patch a LoyaltyPointType

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

Delete a LoyaltyPointType

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

Translate a LoyaltyPointType label

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