OneSky Platform API provides programmatic access to OneSky's platform management.
This is new Platform API and is not compatible with the Classic API. This new API covers most of the endpoints of classic API with numerous of new endpoints added and will continue to be actively developed going forward.
All of the endpoints require you to authenticate. You will have to find your own API key and API secret. First login to OneSky and find the API key.
Name | Type | Description |
api_key |
string | Your own API key |
timestamp |
integer | Current unix timestamp (GMT+0) |
dev_hash |
string |
Calculate with timestamp and api_secret
Formula: md5(concatenate(<timestamp>, <api_secret>))
|
We accept request data in JSON format. Please specify request header with content-type: application/json
and encode the data in JSON format.
SSL is applied to protect all request data. Make sure you are using https to initiate request.
Response body will be in JSON format with 2 objects.
meta
contains the metadata of the response and additional information such as status code, total record count, paginations, etc...data
contains the data from your request such as project information, file information, etc...
Currently, we only support JSON data format in response.
Successful request will response with 2xx
status code together with response body if there is. Details of response body is shown at the bottom of each endpoints.
Failure request will response with an error status code together with an error message.
Example:
status 400 bad request
{
"meta": {
"status": 400,
"message": "Your request cannot be processed"
},
"data": {}
}
Project
- Project Group
- LIST all project groups
- SHOW project group details
- CREATE a new project group
- DELETE a project group
- list enabled LANGUAGES
- Project
- LIST projects of a project group
- SHOW project details
- CREATE a new project
- UPDATE a project
- DELETE a project
- list LANGUAGES of a project
- Project Type
- LIST all project types
String
- File
- LIST uploaded files
- UPLOAD a file
- DELETE a file
- Translation
- EXPORT translations in files
- export translations in MULTILINGUAL files
- export translations of APP STORE Description
- GET translation status
- Import Task
- LIST import tasks
- SHOW import task
- Screenshot
- UPLOAD screenshots
Order
Language
- Locale
- LIST all locales
PHP
- api-library-php5 - OneSky
PHP Symphony
- OneSkyBundle - OpenClassrooms
Python
- onesky-python - danob-jana
Ruby
- onesky-ruby - OneSky
Rails
- onesky-rails - OneSky
Grunt
- grunt-onesky-import - howardhenry
- grunt-onesky-export - howardhenry
Node.js
- nodejs-onesky-utils - Brainly
Go
- onesky-go - Sebastian Czoch