GET api/authentications/{authentication}
Gives you a given SMS authentication
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| authentication |
SMS authentication ID |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
SMS authentication
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:28:18.92753+00:00",
"HasExpired": true,
"Expires": "2025-12-16T03:28:18.92753+00:00",
"IsUsed": true,
"Used": "2025-12-16T03:28:18.92753+00:00"
}