curl --location 'https://gateway.erpconnector.ca/api/ErpConnectorTask' \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '/*Extract customer - Permet d'\''aller chercher le détail d'\''un client. attention, certain système son Case sensitive*/
{
"CodeLicence": "VOTRE_CODE_LICENCE",
"CleSecrete": "VOTRE_CLE_DAPI",
"TaskType":"EXTRACT", //Verbe commun : EXTRACT, CREATE, UPDATE, DELETE,
"TaskCategory": "OnlineERP",
"EntityType":"CUSTOMER",
"TaskPayload":{
"ListOfSolinfoFieldToSelect":["NoClient", "NomClient","Fiche_DerniereModification","DateOuvertureDossier"],
"Filters":[
{
"FieldName":"Fiche_DerniereModification",
"Operator":"GreaterOrEquals",
"Value":"2000-01-01 00:00:00"
}
]
}
}'