{
  "info": {
    "_postman_id": "f54d06b0-e1f7-48a7-8672-07133eabae7e",
    "name": "PingFed_test_token",
    "description": "This Postman collection contains several calls for testing PingFed token creation. \n\n## Setup Environment\nCreate a Postman environment and replace the Placeholders with the proper values for your clients.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
    "_exporter_id": "12133955"
  },
  "item": [
    {
      "name": "Userinfo",
      "request": {
        "auth": {
          "type": "bearer",
          "bearer": [
            {
              "key": "token",
              "value": "{{token}}",
              "type": "string"
            }
          ]
        },
        "method": "GET",
        "header": [],
        "url": {
          "raw": "{{iss}}/idp/userinfo.openid",
          "host": [
            "{{iss}}"
          ],
          "path": [
            "idp",
            "userinfo.openid"
          ]
        }
      },
      "response": []
    },
    {
      "name": "Introspect",
      "request": {
        "auth": {
          "type": "basic",
          "basic": [
            {
              "key": "password",
              "value": "{{clientSecret}}",
              "type": "string"
            },
            {
              "key": "username",
              "value": "{{clientId}}",
              "type": "string"
            }
          ]
        },
        "method": "POST",
        "header": [],
        "body": {
          "mode": "urlencoded",
          "urlencoded": [
            {
              "key": "token",
              "value": "{{token}}",
              "type": "text",
              "uuid": "685d41ee-6581-4436-be82-bf24f840d651"
            },
            {
              "key": "token_type_hint",
              "value": "access_token",
              "type": "text",
              "uuid": "c3e8ac58-fdc0-446c-a251-eee7add8673f"
            }
          ]
        },
        "url": {
          "raw": "{{iss}}/as/introspect.oauth2",
          "host": [
            "{{iss}}"
          ],
          "path": [
            "as",
            "introspect.oauth2"
          ]
        }
      },
      "response": []
    }
  ]
}