Schedule Translations API (Get)
Provides the details of Translations associated with schedule via Litmos Commerce API.
Note: All requests must be Authenticated.
Authentication and Authorization
Information used for API authentication and authorization is submitted in the request header. The following header name/values are required with each request.
Header | Description |
CompanyLoginId | Company Login Id (provisioned by ViewCentral account management) |
ProductId | Product Id. 1=Learning Management, 2=Event Management |
Username | User account username |
Password | User account password |
Request URI :
Get details of all Translations associated with schedule in Litmos commerce application (subscription listing and bundle are excluded) – {id} = schedule id
GET https://api.viewcentral.com/api/schedules/{id}/translations
Response Codes:
HTTP Status | Description |
200 | Operation successful. Schedule Translations object returned in response |
400 | Operation not successful. Response contains error information |
404 | Operation not successful. Schedule Translations object not found |
Response Example:
{ "Success": true, "Error": null, "Data": [ { "LanguageCode": "string [max length 2]", "LanguageDisplayName": "string [max length 50]", "Name": "string [max length 255]", "GroupID": "string [max length 50]", "CustomDetail1": "string [max length 2048]", "CustomDetail2": "string [max length 2048]", "CustomDetail3": "string [max length 2048]", "CustomDetail4": "string [max length 2048]", "CustomDetail5": "string [max length 2048]", "CustomDetail6": "string [max length 2048]", "Modified": { "CreatedBy": "string [max length 50]", "CreatedDate": "datetime [yyyy-mm-ddThh:mm:ssZ]", "UpdatedBy": "string [max length 50]", "UpdatedDate": "datetime [yyyy-mm-ddThh:mm:ssZ]" } } ] }