---
metadata:
  - name: generator
    content: Diplodoc Platform v5.57.3
alternate:
  - https://boost.yandex.com/doc/en/analytics/content/mobile-api/management/fingerprints/fingerprints-android-post.md
  - https://boost.yandex.com/doc/ru/analytics/content/mobile-api/management/fingerprints/fingerprints-android-post.md
  - href: en/analytics/content/mobile-api/management/fingerprints/fingerprints-android-post.md
    type: text/markdown
    title: Markdown version
  - href: ../../../llms.txt
    type: text/markdown
    title: llms.txt
---
> **Documentation Index:** Fetch the complete configuration index at https://boost.yandex.com/doc/en/llms.txt

# Uploading an app's certificate fingerprint

Uploads a certificate fingerprint to the Analytics server.

## Request format {#request-format}

```
POST https://api.boost.yandex.com/management/v1/application/{id}/events_certs_fingerprints/android/add
```

#|
|| `id` | App ID. ||
|#

### Request body format {#structure-in}

```json translate=no
{
    "data": {
        "fingerprint": string
    }
}
```

#|
|| `data` | Object with data. ||
|| `data.fingerprint` | Certificate fingerprint. ||
|#

## Response format {#output-structure}

```json translate=no
{
  "id": int,
  "fingerprint": string
}
```

#|
|| `id` | The ID of the certificate fingerprint (in the request, this parameter is called `fingerprint_id`). ||
|| `fingerprint` | Certificate fingerprint. ||
|#

## Example {#example}

Request:
```bash translate=no
curl -X POST 'https://api.boost.yandex.com/management/v1/application/1111/events_certs_fingerprints/android/add' \
-H 'Content-Type: application/json' \
-H 'Authorization: OAuth oauth_token' \
-d '{
      "data": {
        "fingerprint": "A7:89:E5:05:C8:17:A1:XXXXX"
      }
    }'
```

Response:

```json translate=no
{
  "id": 24,
  "fingerprint": "A7:89:E5:05:C8:17:A1:XXXXX"
}
```

<!-- source: en/analytics/content/_includes/feedback-button-3.md -->
If you didn't find the answer you were looking for, you can use the feedback form to submit your question. Please describe the problem in as much detail as possible. Attach a screenshot if possible.

<a href="../../../troubleshooting/feedback-new">
  <span class="button">Contact support</span>
</a>

<a href="../../../troubleshooting/feedback-docs">
  <span class="button">Suggest an improvement for documentation</span>
</a>
<!-- endsource: en/analytics/content/_includes/feedback-button-3.md -->
