Checking the status of a dispatch with transferId

Returns the status of a dispatch by its ID.

GET /push/v1/status/{transferId}

Request format

https://push.api.appmetrica.yandex.net/push/v1/status/{transferId}
transferId
ID of the dispatch.

Response format

{
  "transfer": {
    "id": 1,
    "group_id": 1,
    "status": "failed",
    "errors": [
      "Identifier type google_aid requires defined message for platform android"
    ],
    "tag": "string",
    "creation_date": "2017-08-28T17:30:15+03:00"
  }
}
transfer
Information about the dispatch.
id

ID of the dispatch.

group_id

Group ID.

status
The dispatch status. Possible values:
  • failed — The request failed validation. The reason is available in the errors field.
  • in_progress — The request has successfully passed the validation. Notifications are being sent.
  • pending — The request is accepted and waiting for validation.
  • sent — Sending completed.
errors
Description of the validation error. The field is available with the failed status.
tag
The dispatch tag.
creation_date
The date the dispatch request was created.