Get a licence of a project
GET/projects/ {projectId}/ llm-licences/ {licenceId}/
v2
GET
project-get-llm-licence-experimental
Request
Responses
Usage examples
- cURL
- JavaScript SDK
- PHP SDK
$ curl \
--fail \
--location \
-H "Authorization: Bearer $MITTWALD_API_TOKEN" \
https://api.mittwald.de/v2/projects/string/llm-licences/string
import { MittwaldAPIV2Client } from "@mittwald/api-client";
import { assertStatus } from "@mittwald/api-client-commons";
const client = MittwaldAPIClient.newWithToken(process.env.MITTWALD_API_TOKEN);
const response = await client.project.getLlmLicenceExperimental({
"projectId": "string",
"licenceId": "string"
});
assertStatus(response, 200);
use \Mittwald\ApiClient\Generated\V2\Clients\Project\GetLlmLicenceExperimental\GetLlmLicenceExperimentalRequest;
$client = MittwaldAPIClient::newWithToken(getenv('MITTWALD_API_TOKEN'));
$request = (new GetLlmLicenceExperimentalRequest(
projectId: "string",
licenceId: "string"
));
$response = $client->project()->getLlmLicenceExperimental($request);
var_dump($response->getBody();