For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Postman
PricingEnterprise
Contact SalesSign InSign Up for Free
HomeDocs
HomeDocs
      • Overview
        • Overview
          • Overview
          • Add certificates
          • Request authorization
          • Public API authorization
          • Authorization types
          • Digest
          • OAuth 1.0
          • OAuth 2.0
          • Hawk
          • AWS Signature
          • NTLM
          • Akamai Edgegrid
          • ASAP (Atlassian)
Postman API Platform

Product

  • Postman Overview
  • Enterprise
  • Spec Hub
  • Flows
  • Agent Mode
  • API Catalog
  • Fern
  • Postman CLI
  • Integrations
  • Workspaces
  • Plans and pricing

API Network

  • App Security
  • Artificial Intelligence
  • Communication
  • Data Analytics
  • Database
  • Developer Productivity
  • DevOps
  • Ecommerce
  • eSignature
  • Financial Services
  • Payments
  • Travel

Resources

  • Postman Docs
  • Academy
  • Community
  • Templates
  • Intergalactic
  • Videos
  • MCP Servers

Legal and Security

  • Legal Terms Hub
  • Terms of Service
  • Postman Product Terms
  • Security
  • Website Terms of Use

Company

  • About
  • Careers and culture
  • Contact us
  • Partner program
  • Customer stories
  • Student programs
  • Press and media
Twitter iconLinkedIn iconGithub iconYouTube iconInstagram iconDiscord icon
Download Postman
Privacy Policy

© 2026 Postman, Inc.

Use PostmanSend requestsAuthentication and authorization

Authenticate with Atlassian S2S in Postman

||View as Markdown|
Was this page helpful?
Previous

Authenticate with Akamai EdgeGrid authentication in Postman

Next

Work with API response data and cookies in Postman

Built with

Atlassian S2S Authentication Protocol (ASAP) is a JSON Web Token (JWT) bearer token that an API server can use to authenticate requests from the client.

To use ASAP, do the following:

  1. In the Authorization tab for a request, select ASAP (Atlassian) from the Type dropdown list.
  2. Enter your details in the fields. You can set optional settings, but Postman will try to generate values for them if necessary.

Enter the following ASAP parameters:

  • Algorithm - Select an asymmetric key algorithm to use to sign the JWT token. The algorithm is a header parameter. Supported algorithms include:

    • RS - RSA (RSASSA-PKCS1-v1_5) with SHA
    • PS - RSA (RSASSA-PSS) with SHA
    • ES - ECDSA with SHA
  • Issuer - A claim that identifies the service that issued the JWT token, and signed the header and payload with its private key.

  • Audience - A claim that identifies the intended recipient of the JWT token.

  • Key ID - The identifier for the issuer’s public key. This is used to verify the JWT token’s signature. The key ID is a header parameter.

  • Private key - The issuer’s private key that signed the JWT token. Select Select File to upload a private key in PKCS #8 or Base64 DER format, or paste your key in the text area.

  • Optional parameters:

    • Subject - A claim that identifies the user the JWT token is issued to. If the subject isn’t specified, the default value is the issuer.

    • Additional claims - Additional claims you’d like to include in your payload, in JSON format. You can learn more about JWT claims.

      If you add claims already defined in this configuration, the values defined in each key-value pair will have higher priority. For example, if you specify an issuer in the Issuer field and also specify an issuer (iss) in a key-value pair, the value in the key-value pair will have higher priority.

    • Expiry - A claim that identifies when the JWT token expires, in seconds. The default expiration timestamp is 3600 seconds, which is equal to one hour.

For more information about ASAP, see Atlassian S2S Authentication Protocol.