get https://try.count.ly/i/apps/create?api_key=&args=
Create new app
Creates new app from values provided in args parameter as stringified JSON
args can contain this properties:
'name': { 'required': true, 'type': 'String' }, //name of the app
'country': { 'required': false, 'type': 'String' }, //your country
'type': { 'required': false, 'type': 'String' }, // type of the app, mobile, web, et
'category': { 'required': false, 'type': 'String' },// ID of app category
'timezone': { 'required': false, 'type': 'String' }// timezone in which to display statistics
Example request could look like
/i/apps/create?api_key=your-api-key&args={"name":"Test App","type":"mobile"}