curl --request GET \
--url https://api.squared.ai/api/v1/syncs/configurations \
--header 'Authorization: Bearer <token>'{
"data": {
"configurations": {
"catalog_mapping_types": {
"standard": "<string>",
"static": {
"string": {
"type": "string",
"description": "<string>"
},
"number": {
"type": "float",
"description": "<string>"
},
"boolean": {
"type": "boolean",
"description": "<string>"
},
"null": {
"type": null,
"description": "<string>"
}
},
"template": {
"variable": {
"current_timestamp": {
"type": "datetime",
"description": "<string>",
"value": "<string>"
}
},
"filter": {
"cast": {
"description": "<string>",
"value": "<string>"
},
"regex_replace": {
"description": "<string>",
"value": "<string>"
}
}
}
}
}
}
}curl --request GET \
--url https://api.squared.ai/api/v1/syncs/configurations \
--header 'Authorization: Bearer <token>'{
"data": {
"configurations": {
"catalog_mapping_types": {
"standard": "<string>",
"static": {
"string": {
"type": "string",
"description": "<string>"
},
"number": {
"type": "float",
"description": "<string>"
},
"boolean": {
"type": "boolean",
"description": "<string>"
},
"null": {
"type": null,
"description": "<string>"
}
},
"template": {
"variable": {
"current_timestamp": {
"type": "datetime",
"description": "<string>",
"value": "<string>"
}
},
"filter": {
"cast": {
"description": "<string>",
"value": "<string>"
},
"regex_replace": {
"description": "<string>",
"value": "<string>"
}
}
}
}
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Successfully retrieved report data.
Data object containing configuration details.
Show child attributes
Configuration details.
Show child attributes
Mapping types for catalog data.
Show child attributes
Details for standard mapping type (currently empty).
Details for static mapping type.
Show child attributes
Details for boolean type within static mapping.
Details for template mapping type.
Show child attributes
Details for variables within template mapping.
Show child attributes
Details for current_timestamp variable.
Show child attributes
Data type for current_timestamp variable.
datetime Description of the current_timestamp variable.
Expression to generate current timestamp.
Details for filters within template mapping.
Show child attributes
Details for regex_replace filter.
Was this page helpful?