To main content
​Получение списка сеанса аутентификации
Используется для получения списка аутентификаций за определенный период.
Чтобы получить список сеансов аутентификации, сделайте запрос по этому URL:
GET https://one-api.notificore.ru/api/2fa/authentications
Request parameters
ParameterRequiresTypeDefaultDescription
page[offset]Nointeger0Get auths starting at offset.
page[limit]Nointeger10The number of authentications in the response. Possible values are from 10 to 500.
filter[from]YesstringPeriod start date (date and time when the authentication session was created) in ISO 8601 format.
filter[to]YesstringEnd date of the period (date and time when the authentication was created) in ISO 8601 format.
filter[ids]NostringAuthentication ID. The maximum number is 3.
filter[status]NostringPossible values: “pending”, “verified”, “expired”, “failed”, “canceled”.
filter[channel]NostringPossible values: “SMS”, “Viber”.
filter[recipient]NostringThe phone number to which you want to send the OTP code. 9 to 15 digits.
filter[country_code]NostringBeneficiary country code according to ISO 3166-1 alpha-2
wayNostringascSort options: asc, desc
sortNostringcreated_atSort by: id, status, channel, recipient, created_at, finished_at, country_code.
Response parameters
ParameterTypeDescription
listarrayAn array of authentication objects.
list[]idstringThe ID of the generated authentication.
list[]recipientstringNumber of the recipient of the message with the OTP code.
list[]statusstringAuthentication status. Possible values:pending – authentication has been created and is in the pending state verified – authentication successful (one-time password successfully verified) expired – authentication has expired failed – authentication failed canceled – authentication has been canceled.
list[]channelstringChannel for authentication.
list[]senderstringSender’s name.
list[]sender_altstringAlternative sender name for SMS.
list[]code_lifetimeintegerThe expiration date of the one-time password.
list[]code_max_triesintegerThe number of attempts to verify the one-time password.
list[]code_digitsintegerThe number of digits in the one-time password.
list[]pricefloatAuthentication session cost.
list[]currencystringThe three-letter code of the currency in which the authentication cost is indicated.
list[]country_codestringReceiver’s country code according to ISO 3166-1 alpha-2.
list[]expired_atstringThe expiration date of the authentication in ISO 8601 format.
list[]created_atstringThe date and time of the authentication was created in ISO 8601 format.
list[]finished_atstringDate and time when authentication was closed in ISO 8601 format.
list[]messagesarrayArray of message objects:
list[]messages[]idstringThe unique ID of the message.
list[]messages[]recipientstringThe recipient’s phone number.
list[]messages[]statusstringMessage status. Possible values: delivered – the message was sent accepted – message accepted for sending undelivered – the message was not delivered.
list[]messages[]senderstringThe name of the sender of the message.
list[]messages[]textstringMessage text.
list[]messages[]pricefloatMessage cost.
list[]messages[]currencystringCurrency of the account in which the cost is indicated. Corresponds to the user’s account currency.
list[]messages[]sent_atstringThe date and time of the message was sent in ISO 8601 format.
list[]messages[]created_atstringThe date and time the message was created in ISO 8601 format.
totalintegerThe total number of authentications.
Response example

Ответ в случае успешного запроса:
{
  "data": {
    "list": [
      {
        "id": "ea5db413-e368-4952-b745-cc2030210c49",
        "recipient": "792501403813",
        "status": "verified",
        "channel": "sms",
        "sender": "testsms",
        "sender_alt": "string",
        "message_text": "Your Notificore 2FA confirmation code is {code}. Do not share this with anyone else.",
        "code_lifetime": 30,
        "code_max_tries": 5,
        "code_digits": 6,
        "price": 50.25,
        "currency": "EUR",
        "country_code": "RU",
        "expired_at": "2022-04-28 14:21:16",
        "created_at": "2022-04-28 14:21:16",
        "updated_at": "2022-04-28 14:21:16",
        "finished_at": "2022-04-28 14:21:16",
        "messages": [
          {
            "id": "1ed32701-5d4f-6cfa-ba06-9db3aa8bab68",
            "recipient": "61401629754",
            "status": "accepted",
            "channel": "sms",
            "sender": "SENDER",
            "price": 0.0642918,
            "currency": "EUR",
            "sent_at": "2022-04-18 11:00:30",
            "created_at": "2022-04-18 10:55:35"
          }
        ]
      }
    ],
    "total": 100
  }
}