Skip to content
QASignoff

Documentation

Authentication

Configure Bearer, Basic, API key, and other auth types per request.

Authentication

Configure how Signoff Studio authenticates each request.

Auth editor

Set auth on a request

  1. Open a request.
  2. Go to the Auth tab.
  3. Choose a type and fill the fields.

Supported types

TypeTypical use
No authPublic endpoints
Inherit from parentUse collection/folder auth
Bearer token
Authorization: Bearer …
Basic authUsername + password
API keyHeader or query key
OAuth 2.0 / OAuth 1.0Token flows
Digest / AWS / NTLM / Hawk / CustomSpecialized protocols

Try it with the Starter Guide

Bearer

  1. Open 05 - Auth → GET · Bearer Token.
  2. Auth type is Bearer token with
    {{bearerToken}}
    .
  3. Send — expect
    authenticated: true
    .

Basic

  1. Open GET · Basic Auth.
  2. Uses
    {{basicUser}}
    /
    {{basicPass}}
    from the httpbingo environment.
  3. Send.

API key

  1. Open GET · API Key Header.
  2. Confirm the key name/value variables.
  3. Send.

Tips

  • Prefer environment variables for secrets instead of hard-coding tokens.
  • Pair with Tests to assert
    authenticated
    or status codes.

Next

Need something else? See the FAQ. Questions: [email protected]. Bugs: [email protected].