GET api/authentications
Gives you a list of your SMS authentications
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
List of SMS authentications
Collection of AuthenticationDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| ID |
SMS authentication ID |
integer |
None. |
| Phone |
Recipient phone number |
string |
None. |
| Created |
When the SMS authentication was created/started (UTC/GMT) |
date |
None. |
| HasExpired |
Whether the SMS authentication has expired |
boolean |
None. |
| Expires |
When the SMS authentication will expire (UTC/GMT) |
date |
None. |
| IsUsed |
Whether the SMS authentication has been used |
boolean |
None. |
| Used |
When the SMS authentication was used, if used (UTC/GMT) |
date |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ID": 1,
"Phone": "sample string 2",
"Created": "2025-12-16T03:27:10.4804755+00:00",
"HasExpired": true,
"Expires": "2025-12-16T03:27:10.4804755+00:00",
"IsUsed": true,
"Used": "2025-12-16T03:27:10.4804755+00:00"
},
{
"ID": 1,
"Phone": "sample string 2",
"Created": "2025-12-16T03:27:10.4804755+00:00",
"HasExpired": true,
"Expires": "2025-12-16T03:27:10.4804755+00:00",
"IsUsed": true,
"Used": "2025-12-16T03:27:10.4804755+00:00"
}
]