Create app

Adds an app to AppMetrica.

POST /management/v1/applications
  1. Request format
  2. Response format
  3. Example

Request format

https://api.appmetrica.yandex.ru/management/v1/applications

Request body

{
  "application": {
    "name": "string",
    "category": int,
    "time_zone_name": "string",
    "hide_address": bool,
    "gdpr_agreement_accepted": bool
  }
}
name *

App name

category *

ID of the app category.

To get a list of all app categories, use the GET /management/v1/metadata/application/categories resource.

time_zone_name

Time zone for statistics

hide_address

The status indicating if the collecting complete IP addresses of users from the EU is enabled.

Possible values:
  • true — Enabled.
  • false — Disabled.
gdpr_agreement_accepted

Acceptance status of the General Data Protection Regulation compliance.

Possible values:
  • true — The compliance is accepted.
  • false — The compliance is declined.

Required

Response format

{
  "application": {
    "name": "string",
    "time_zone_name": "string",
    "hide_address": bool,
    "gdpr_agreement_accepted": bool,
    "category": int,
    "use_universal_links": bool,
    "id": int,
    "uid": int,
    "owner_login": "string",
    "api_key128": "string",
    "import_token": "string",
    "permission": "string",
    "time_zone_offset": int,
    "create_date": "YYYY-MM-DD"
  }
}
name

App name

time_zone_name

Time zone for statistics

hide_address

The status indicating if the collecting complete IP addresses of users from the EU is enabled.

Possible values:
  • true — Enabled.
  • false — Disabled.
gdpr_agreement_accepted

Acceptance status of the General Data Protection Regulation compliance.

Possible values:
  • true — The compliance is accepted.
  • false — The compliance is declined.
category

ID of the app category.

To get a list of all app categories, use the GET /management/v1/metadata/application/categories resource.

use_universal_links

Status of using the Universal Link.

Possible values:
  • true — Use Universal Link is enabled.
  • false — Use Universal Link is disabled.
id

App ID.

uid
ID of the user who added the app.
owner_login

Login of the app owner.

api_key128

API key.

import_token

Post API key.

permission

Access rights.

Possible values:

  • view — Read only;
  • edit — Read/Edit;
  • agency_view — Agency read only;
  • agency_edit — Agency read/edit;
  • own — The owner of the app;

For more information, see Managing app access.

time_zone_offset

The time zone offset relative to UTC in seconds.

create_date

Date the app was added.

Example

curl -X POST \
  'https://api.appmetrica.yandex.ru/management/v1/applications' \
  -H 'Content-Type: application/json' \
  -H 'Authorization: OAuth 05dd3dd84ff948fdae2bc4fb91f13e22bb1f289ceef0037' \
  -d '{
    "application": {
        "name": "string",
        "category": 85,
        "time_zone_name": "Asia/Yekaterinburg",
        "hide_address": true,
        "gdpr_agreement_accepted": true
    }
}'
Copied to clipboard