My App
Api
PATCH
/projects/{projectId}
x-api-key<token>

API key from the LangRelay dashboard. Org-level keys can access all projects; project-scoped keys are restricted to one project.

In: header

Path Parameters

projectId*string

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X PATCH "https://api.langrelay.com/v1/projects/proj_abc123" \  -H "Content-Type: application/json" \  -d '{}'
{
  "id": "proj_abc123",
  "name": "Acme Corp Docs",
  "originUrl": "string",
  "sourceLanguage": "en",
  "languages": [
    "fr",
    "de"
  ],
  "plan": "starter",
  "createdAt": "2019-08-24T14:15:22Z",
  "updatedAt": "2019-08-24T14:15:22Z"
}