Syncs
Get Sync Configurations
REST API
- Introduction
- Models
- Connector Definitions
- Connectors
- Syncs
- Sync Runs
- Sync Records
- Reports
- Roles
- Catalogs
Syncs
Get Sync Configurations
GET
/
api
/
v1
/
syncs
/
configurations
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": {
"description": "<string>"
}
},
"template": {
"variable": {
"current_timestamp": {
"type": "datetime",
"description": "<string>",
"value": "<string>"
}
},
"filter": {
"cast": {
"description": "<string>",
"value": "<string>"
},
"regex_replace": {
"description": "<string>",
"value": "<string>"
}
}
}
}
}
}
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200 - application/json
Successfully retrieved report data.
Data object containing configuration details.
Configuration details.
Mapping types for catalog data.
Details for standard mapping type (currently empty).
Details for static mapping type.
Details for string type within static mapping.
Details for number type within static mapping.
Details for boolean type within static mapping.
Details for null type within static mapping.
Was this page helpful?
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": {
"description": "<string>"
}
},
"template": {
"variable": {
"current_timestamp": {
"type": "datetime",
"description": "<string>",
"value": "<string>"
}
},
"filter": {
"cast": {
"description": "<string>",
"value": "<string>"
},
"regex_replace": {
"description": "<string>",
"value": "<string>"
}
}
}
}
}
}
}