Skip to main content

Returns project level prompt customization

GET 

https://app.tolgee.io/v2/projects/:projectId/ai-prompt-customization

Returns project level prompt customization

Request

Path Parameters

    projectId int64required

Responses

OK

Schema
    descriptionstring

    The project description used in the prompt that helps AI translator to understand the context of your project.

    Example: We are Dunder Mifflin, a paper company. We sell paper. This is an project of translations for out paper selling app.

Authorization: http

name: JwtTokentype: httpscheme: bearerbearerFormat: JWT
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "https://app.tolgee.io/v2/projects/:projectId/ai-prompt-customization");
request.Headers.Add("Accept", "application/json");
request.Headers.Add("Authorization", "Bearer <token>");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Base URL
https://app.tolgee.io
Auth
Parameters
— pathrequired
ResponseClear

Click the Send API Request button above and see the response here!