Project Templates

List project templates

OAuth: This endpoint requires one of the following scopes: project:manage, project:read or project:write.

Code samples

curl -G "https://api.textmaster.com/v1/clients/api_templates" \
  -H "Authorization: Bearer d90944ea5d7cd52b350b879cfc390f62cb24661eff398141ce6ab040dc5aee4e"

Filter project templates

OAuth: This endpoint requires one of the following scopes: project:manage, project:write or project:read.

Parameters

You can use the Filter API to filter documents on a collection of criteria.

NameTypeDescription

id

string

The unique identifier of the project template.

name

string

The name of the project template.

activity_name

string

The activity of the project template.

created_at

string

Describes the time the project template was created. This is a timestamp in ISO 8601 format: YYYY-MM-DDTHH:MM:SSZ.

updated_at

string

Describes the time the project template was last updated. This is a timestamp in ISO 8601 format: YYYY-MM-DDTHH:MM:SSZ.

language_from_code

string

The source language code of the project template. One of the language code returned by the Language endpoint.

language_to_code

string

The target language code of the project template. One of the language code returned by the Language endpoint.

level_name

string

The level of the project template. One of the level names returned by the Level endpoint.

Code samples

curl -G "https://api.textmaster.com/v1/clients/api_templates/filter" \
  --data-urlencode 'where={"name":"Lorem","language_from_code":"fr","language_to_code":"en"}' \
  --data-urlencode 'order=level_name' \
  -H "Authorization: Bearer 423773845b670244f0d3025c0be48de100f29482665e98c89e8dd31051938f12"

Last updated