SourceType entities
Name | Type | Is Mandatory |
---|---|---|
SourceTypeId | Int16 | |
Label | String | |
DeletionFlag | Boolean | |
Sources | Collection of Source |
Select all SourceTypes
https://customerapi.fts-crm360.com/data/SourceTypes()
HttpMethod : GET
Json Result :
[
{
"SourceTypeId" : "5",
"Label" : "hlH8i9kEKFD3Tw0x680",
"DeletionFlag" : "False"
},
{
"SourceTypeId" : "6",
"Label" : "QzcFB3Id2",
"DeletionFlag" : "False"
},
...
]
Select SourceType by Id
https://customerapi.fts-crm360.com/data/SourceTypes(8)
HttpMethod : GET
Json Result :
{
"SourceTypeId" : "4",
"Label" : "TjffcPiw8du0yYLqAzj",
"DeletionFlag" : "False"
}
Create a SourceType
https://customerapi.fts-crm360.com/data/SourceTypes()
HttpMethod : POST
Json Post :
{
"Label" : "VUfc6r6",
"DeletionFlag" : "True"
}
Informations :
- Non mandatory fields are optional for Json Post
Update a SourceType
https://customerapi.fts-crm360.com/data/SourceTypes(8)
HttpMethod : PUT
Json Post :
{
"SourceTypeId" : "2",
"Label" : "X4 gN",
"DeletionFlag" : "False"
}
Informations :
- Non mandatory fields are optional for Json Post
Patch a SourceType
https://customerapi.fts-crm360.com/data/SourceTypes(8)
HttpMethod : PATCH
Json Post :
{
"DeletionFlag" : "False"
}
Informations :
- Non mandatory fields are optional for Json Post
Delete a SourceType
https://customerapi.fts-crm360.com/data/SourceTypes(6)
HttpMethod : DELETE
Translate a SourceType label
https://customerapi.fts-crm360.com/data/SourceTypes(6)/Label
HttpMethod : GET
Required Fields :
Http Header for language : X-Crm360Api-Language-3