This module allows you to communicate with an app via the API. Once you implement the API module along with the API methods in your app, you’ll be able to access the app’s API methods via the Crowdin API to manage (i.e., modify or delete) the necessary app data.
You can grant access to this module to one of the following user categories:
For Crowdin:
For Crowdin Enterprise:
{
"api": [
{
"key": "your-api-module-key",
"name": "API method name",
"url": "/path",
"method": "GET",
"description": "Description of the API method",
"documentationUrl": "/path/to/documentation"
}
]
}
key | Type: Required: yes Description: Module identifier within the Crowdin app. |
name | Type: Required: yes Description: API method name. |
url | Type: Required: yes Description: The relative URL to the API method. |
method | Type: Allowed values: Required: yes Description: API method type. |
description | Type: Description: Description of the API method. |
documentationUrl | Type: Description: The relative URL to the API method documentation. |