passkey

Collection: passkeys

Passkeys are an additional authentication method used at auth.foxy.io to access admin.foxy.io. Passkey creation is limited to Foxy internal processes. If you have a use case that requires creating passkeys, please reach out to discuss it with us.

Required Scopes

Full user_full_access
Read users_read
Write users_write

Actions

GET View a passkey
DELETE Delete a passkey
HEAD Get just the header response
OPTIONS Get a response explaining which HTTP methods are supported

Properties (5)

credential_id String · Read-only

Credential ID of this passkey.

last_login_date String (nullable) · Read-only

The last login date using this passkey.

last_login_ua String (nullable) · Read-only

The last login user agent string for this passkey.

date_created String (nullable) · Read-only

The date this passkey was created.

date_modified String (nullable) · Read-only

The date this passkey was last modified.

Link Relations (3)

self This Passkey
fx:user GET PATCH PUT DELETE Foxy user that owns this passkey
fx:user_passkeys Collection of all passkeys for authenticated User
https://api.foxycart.com/passkeys/{id}

Example Representation

{
  "_links": {
    "curies": [
      {
        "name": "fx",
        "href": "https://api.foxycart.com/rels/{rel}",
        "templated": true
      }
    ],
    "self": {
      "href": "https://api.foxycart.com/passkeys/123",
      "title": "This Passkey"
    },
    "fx:user": {
      "href": "https://api.foxycart.com/users/999",
      "title": "Foxy user that owns this passkey"
    },
    "fx:user_passkeys": {
      "href": "https://api.foxycart.com/users/999/passkeys",
      "title": "Collection of all passkeys for authenticated User"
    }
  },
  "credential_id": "passkey_credentialId",
  "last_login_date": "2024-03-29T19:03:19-0700",
  "last_login_ua": null,
  "date_created": "2024-03-29T19:03:19-0700",
  "date_modified": "2024-03-30T06:55:53-0700"
}