Skip to main content
GET
/
api
/
v1
/
templates
List Templates
curl --request GET \
  --url https://api.artosai.com/api/v1/templates/ \
  --header 'Authorization: Bearer <token>'
{
  "templates": [
    {
      "id": "<string>",
      "template_name": "<string>",
      "source_document_name": "<string>",
      "url": "<string>",
      "detected_document_type": "<string>",
      "template_id": "<string>",
      "sections": [
        {}
      ],
      "status": "<string>",
      "template_file_name": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer token authentication. Token provides organization-scoped access.

Response

200 - application/json

Templates listed successfully

templates
object[]