Download the task target content

Learn how to download the translated content in the original source format

Endpoint 

https://api.platform.easytranslate.com/laas/api/v1/teams/:team_identifier/projects/:project_id/tasks/:task_id/download
In order to decline the price of a project, you need to send a GET request.
In your request's header, you need to add your access token, to do so, simply add "Authorization" as a key and "Bearer {{ACCESS_TOKEN}}" (instead of {{ACCESS_TOKEN}}, you should provide your access token)
 

You then need to pass three variables (team_identifier, project_id, task_id) in the path of your endpoint

    • Team_identifier: {{TEAM_IDENTIFIER}}
      Instead of {{TEAM_IDENTIFIER}} in the request example below, you need to provide the team_identifier of your team. It can be retrieved from the api/v1/user endpoint. The team_identifier is used to identify the projects of the authenticated account. 
    • Project_id: {{PROJECT_ID}}
      Instead of {{PROJECT_ID}} in the request example below, you simply have to specify the ID of the project you want to get. 
    • Task_id: {{TASK_ID}}
      Instead of {{TASK_ID}} in the request example below, you simply have to specify the ID of the project task you want to download. 

 

Request example

curl --location -g --request GET 'https://api.platform.easytranslate.com/laas/api/v1/teams/{{TEAM_IDENTIFIER}}/projects/{{PROJECT_ID}}/tasks/{{TASK_ID}}/download' \
--header 'Authorization: Bearer {{ACCESS_TOKEN}}'