Header

Header values

  • Applicable to Restful API

  • Header values can be set at the RequestHeaders column

  • Header values follow the format of Key:value

    • eg. Authorization: Bearer <@accessTokenAdmin>

      • In this example, accessTokenAdmin variable is set in previous step

  • We can have multiple header values separated by ";"

    • eg. Authorization:value1; Accept-Ranges:bytes;

NO_TOKEN

  • We can test without a authorization token set using the NO_TOKEN key

  • This is to test an api call without authentication set

INVALID_TOKEN

  • We can set our authorization token to be invalid using INVALID_TOKEN key

  • This will take existing token set from previous steps, and invalidate them

  • If no token is set, it will set AUTHORIZATION header to "invalid"

Last updated

Was this helpful?