Key pair match

List key pairs for a principal with optional glob pattern and pagination via next. Each item includes the public key used to identify the pair.

GET
{{host}}/v1/keypair/match?principal={{principal}}&next={{next}}&pattern={{pattern}}
VERB:GET
BASE URL:{{host}}/v1/keypair/match
QUERY STRING:?principal={{principal}}&next={{next}}&pattern={{pattern}}

Query parameters#

  • principalstring
    Required

    Principal whose key pairs are listed.

    example: root
  • nextnumber
    Required

    Pagination cursor (required): use `0` for the first page; thereafter use the value returned by the previous response as the `next` query parameter. The response body returns the cursor for the next page. A value of `-1` means there is no further page — you have the last page of data.

    example: 0
  • patternstring
    Optional

    Optional glob-style pattern to filter.

    Values

    • pattern
    • *pattern
    • pattern*
    • *pattern*
    example: *

Headers#

Send these headers with the request. Names are case-insensitive per HTTP rules.
  • x-api-keyRequired

    Your BigState API key.

    *provide api key here*
  • Content-TypeRequired

    MIME type of the request body.

    application/json
  • AcceptRequired

    MIME types the client can understand in the response.

    application/json

See authentication headers here.

  • 200Response body · object

    Success. Returns a pagination cursor and the matching key pairs for this page.

    • nextnumber

      Pagination cursor (required): use `0` for the first page; thereafter use the value returned by the previous response as the `next` query parameter. The response body returns the cursor for the next page. A value of `-1` means there is no further page — you have the last page of data.

      example: 0
    • keyPairsarray[object]

      Key pairs that matched the pattern on this page.

      • keyPairs[0].publicKeystring

        Public key (hex) identifying this key pair.

  • 401

    Unauthorized.

  • 403

    Access denied. The caller does not have sufficient rights to perform this operation.

  • 400Response body · object

    Bad request.

    {
    "error": 6,
    "desc": "Invalid request"
    }
    • errornumber

      Numeric error code. See the error codes reference for the full list.

    • descstring

      Human-readable description of the error.

Match key pairs

List public keys for a principal with optional glob pattern (paginated with `next`).

curl https://api.bigstate.dev/v1/keypair/match?principal=root&next=0&pattern=* \
--header 'x-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Accept: application/json'

© 2024 BigState