Crowdin integration (Productivity, Communication). Imported from open-connector.
https://{organization_domain}.api.crowdin.com/api/v2/projects
| Param | Type | Required | Description |
|---|---|---|---|
| limit | integer | optional | The maximum number of items to return. |
| offset | integer | optional | The offset for paginating through results. |
/branches
| Param | Type | Required | Description |
|---|---|---|---|
| projectId | integer | required | The project ID to list branches for. |
| limit | integer | optional | The maximum number of items to return. |
| offset | integer | optional | The offset for paginating through results. |
| name | string | optional | The branch name to filter by. |
/branches
| Param | Type | Required | Description |
|---|---|---|---|
| projectId | integer | required | The project ID to create the branch in. |
| name | string | required | The name of the new branch. |
| title | string | optional | The title of the new branch. |
| exportPattern | string | optional | The export pattern for the branch. |
| priority | integer | optional | The priority of the branch. |
/directories
| Param | Type | Required | Description |
|---|---|---|---|
| projectId | integer | required | The project ID to list directories for. |
| branchId | integer | optional | The branch ID to filter or create within. |
| directoryId | integer | optional | The directory ID to filter or create within. |
| filter | string | optional | The filter string to match directory names. |
| recursion | boolean | optional | Whether to list directories recursively. |
| limit | integer | optional | The maximum number of items to return. |
| offset | integer | optional | The offset for paginating through results. |
/directories
| Param | Type | Required | Description |
|---|---|---|---|
| projectId | integer | required | The project ID to create the directory in. |
| name | string | required | The name of the new directory. |
| branchId | integer | optional | The branch ID to filter or create within. |
| directoryId | integer | optional | The directory ID to filter or create within. |
| title | string | optional | The title of the new directory. |
| exportPattern | string | optional | The export pattern for the directory. |
| priority | integer | optional | The priority of the directory. |
/files
| Param | Type | Required | Description |
|---|---|---|---|
| projectId | integer | required | The project ID to list files for. |
| branchId | integer | optional | The branch ID to filter or create within. |
| directoryId | integer | optional | The directory ID to filter or create within. |
| filter | string | optional | The filter string to match file names. |
| recursion | boolean | optional | Whether to list files recursively. |
| limit | integer | optional | The maximum number of items to return. |
| offset | integer | optional | The offset for paginating through results. |
/projects/{projectId}/files
| Param | Type | Required | Description |
|---|---|---|---|
| projectId | integer | required | The project ID to upload the file to. |
| name | string | required | The name of the file to upload. |
| contentBase64 | string | required | The base64-encoded content of the file. |
| contentType | string | optional | The MIME type of the file content. |
| branchId | integer | optional | The branch ID to filter or create within. |
| directoryId | integer | optional | The directory ID to filter or create within. |
| title | string | optional | The title of the source file. |
| context | string | optional | The context information for the source file. |
| type | string | optional | The file type identifier. |
| parserVersion | string | optional | The parser version to use for the file. |
| importOptions | object | optional | The import options for the file. |
| exportOptions | object | optional | The export options for the file. |