Import an interface template into a project.
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
curl --request POST \
--url 'https://api.unify.ai/v0/interfaces/import_template' \
--header "Authorization: Bearer $UNIFY_KEY" \
--header 'Content-Type: application/json' \
--data '{}'
{
"success": true,
"import_stats": {
"interfaces": 1,
"tabs": 2,
"tiles": 5
},
"created_ids": {
"interface_id": "abc123"
},
"warnings": []
}