Skip to main content
POST
/
projects
/
{project_name}
/
tables
/
{table_id}
/
reconcile
Synchronous reconciliation run
curl --request POST \
  --url https://api.cloudsquid.io/api/projects/{project_name}/tables/{table_id}/reconcile \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "data": {
    "type": "data",
    "data": [
      {
        "asset_name": "<string>",
        "row_data": {}
      }
    ]
  }
}
'
{
  "result": {}
}

Authorizations

X-API-Key
string
header
required

Path Parameters

project_name
string
required

The name of the project

table_id
string<uuid>
required

The ID of the table

Body

application/json
data
object
required

Response

Successfully reconciled data

result
object

Object with direct values for each key, allowing single values or arrays of values.