POST
/
v0
/
tile
/
import_template
curl --request POST \
  --url 'https://api.unify.ai/v0/tile/import_template' \
  --header "Authorization: Bearer $UNIFY_KEY" \
  --header 'Content-Type: application/json' \
  --data '{}'
{
    "success": true,
    "import_stats": {
        "tiles": 1
    },
    "created_ids": {
        "tile_id": "ghi789"
    },
    "warnings": []
}

Import a tile template into a tab.

Authorizations

Authorization
string
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

project
string
required
validate_first
boolean
default:"true"
auto_sanitize
boolean
default:"true"
overwrite_existing
boolean
default:"false"
template
object
required
tab_id
string | null
interface_id
string | null
tab_name
string | null
new_tile_name
string | null
curl --request POST \
  --url 'https://api.unify.ai/v0/tile/import_template' \
  --header "Authorization: Bearer $UNIFY_KEY" \
  --header 'Content-Type: application/json' \
  --data '{}'
{
    "success": true,
    "import_stats": {
        "tiles": 1
    },
    "created_ids": {
        "tile_id": "ghi789"
    },
    "warnings": []
}