Skip to main content

Create a dispatch target

POST 

/nevisfido/token/dispatch/targets

This is a proprietary nevisFIDO API — not part of the FIDO UAF standard — used to register a new dispatch target for a given user. A dispatch target represents a delivery destination, such as a mobile device receiving push notifications or an email address, to which nevisFIDO can send operation tokens during a FIDO UAF authentication or registration flow. Each dispatch target is associated with a public key (in JWK format) that nevisFIDO uses to verify device-signed requests for subsequent modifications. On success, the server assigns the target a unique identifier that must be referenced when dispatching tokens or managing the target through other Dispatch Target Service endpoints.

Request

Header Parameters

    headers objectrequired

Body

required
    username string
    deviceId string
    name string
    target string
    dispatcher string
    signatureKey string
    encryptionKey string

Responses

Created The server successfully created the dispatch target. The response body contains id (the internal dispatch target identifier) and extId (the external identifier).

Loading...