MyAccount Management
/- Poll the Challenge for Email Magic Link
API versioning
List all Emails
Create an Email
Retrieve an Email
Delete an Email
Send an Email Challenge
Verify an Email OTP
Poll the Challenge for Em...
GET
curl -i -X GET \
https://okta-subdomain.pixtulate.com/idp/myaccount/emails/00T196qTp3LIMZQ0L0g3/challenge/x1MDGzUb \
-H 'Accept: application/json; okta-version=1.0.0'OK
The challenge status of the caller's email
Enum:"VERIFIED""UNVERIFIED"
Example:"UNVERIFIED"
The time at which the challenge expires. The lifetime of a challenge is five minutes.
Example:"2022-02-01T00:41:25.497Z"
Defines the email address on the profile
Example:
{ "email": "s.jackson@example.com" }
Discoverable resources related to the poll for the email challenge's status
Example:
{ "verify": { "href": "https://okta-example.pixtulate.com/idp/myaccount/emails/da03e945d44d8b714da2b9fded39e851/challenge/myaccount.DDvNA6XORA2dIfB894o32g/verify", "hints": { … } }, "poll": { "href": "https://okta-example.pixtulate.com/idp/myaccount/emails/da03e945d44d8b714da2b9fded39e851/challenge/myaccount.DDvNA6XORA2dIfB894o32g", "hints": { … } } }
Response
{ "id": "myaccount.DDvNA6XORA2dIfB894o32g", "status": "UNVERIFIED", "expiresAt": "2022-02-01T00:41:25.497Z", "profile": { "email": "s.jackson@example.com" }, "_links": { "verify": { … }, "poll": { … } } }