├── .gitignore ├── LICENSE.md ├── OAuth Playground ├── OAuth Demos (JWT).postman_collection.json ├── PF OAuthPlayground.postman_environment.json └── README.md ├── PingAccess Admin API ├── CHANGELOG.md ├── README.md └── collection │ ├── pa-admin-api.postman_collection.json │ └── pa-admin-api.postman_environment.json ├── PingFederate Admin API ├── CHANGELOG.md ├── README.md └── collection │ ├── pf-admin-api.postman_collection.json │ └── pf-admin-api.postman_environment.json ├── PingID SDK ├── .DS_Store ├── PingFed Integration - Email Templates.postman_collection.json ├── PingID SDK - Sample Calls.postman_collection.json ├── README.md ├── Template.postman_environment.json └── create-authz-token ├── PingID ├── README.md └── pingid.postman_collection.json ├── Pre-Request script to generate a JWT └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingidentity/Postman-Calls/HEAD/LICENSE.md -------------------------------------------------------------------------------- /OAuth Playground/OAuth Demos (JWT).postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingidentity/Postman-Calls/HEAD/OAuth Playground/OAuth Demos (JWT).postman_collection.json -------------------------------------------------------------------------------- /OAuth Playground/PF OAuthPlayground.postman_environment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingidentity/Postman-Calls/HEAD/OAuth Playground/PF OAuthPlayground.postman_environment.json -------------------------------------------------------------------------------- /OAuth Playground/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingidentity/Postman-Calls/HEAD/OAuth Playground/README.md -------------------------------------------------------------------------------- /PingAccess Admin API/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingidentity/Postman-Calls/HEAD/PingAccess Admin API/CHANGELOG.md -------------------------------------------------------------------------------- /PingAccess Admin API/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingidentity/Postman-Calls/HEAD/PingAccess Admin API/README.md -------------------------------------------------------------------------------- /PingAccess Admin API/collection/pa-admin-api.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingidentity/Postman-Calls/HEAD/PingAccess Admin API/collection/pa-admin-api.postman_collection.json -------------------------------------------------------------------------------- /PingAccess Admin API/collection/pa-admin-api.postman_environment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingidentity/Postman-Calls/HEAD/PingAccess Admin API/collection/pa-admin-api.postman_environment.json -------------------------------------------------------------------------------- /PingFederate Admin API/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingidentity/Postman-Calls/HEAD/PingFederate Admin API/CHANGELOG.md -------------------------------------------------------------------------------- /PingFederate Admin API/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingidentity/Postman-Calls/HEAD/PingFederate Admin API/README.md -------------------------------------------------------------------------------- /PingFederate Admin API/collection/pf-admin-api.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingidentity/Postman-Calls/HEAD/PingFederate Admin API/collection/pf-admin-api.postman_collection.json -------------------------------------------------------------------------------- /PingFederate Admin API/collection/pf-admin-api.postman_environment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingidentity/Postman-Calls/HEAD/PingFederate Admin API/collection/pf-admin-api.postman_environment.json -------------------------------------------------------------------------------- /PingID SDK/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingidentity/Postman-Calls/HEAD/PingID SDK/.DS_Store -------------------------------------------------------------------------------- /PingID SDK/PingFed Integration - Email Templates.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingidentity/Postman-Calls/HEAD/PingID SDK/PingFed Integration - Email Templates.postman_collection.json -------------------------------------------------------------------------------- /PingID SDK/PingID SDK - Sample Calls.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingidentity/Postman-Calls/HEAD/PingID SDK/PingID SDK - Sample Calls.postman_collection.json -------------------------------------------------------------------------------- /PingID SDK/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingidentity/Postman-Calls/HEAD/PingID SDK/README.md -------------------------------------------------------------------------------- /PingID SDK/Template.postman_environment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingidentity/Postman-Calls/HEAD/PingID SDK/Template.postman_environment.json -------------------------------------------------------------------------------- /PingID SDK/create-authz-token: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingidentity/Postman-Calls/HEAD/PingID SDK/create-authz-token -------------------------------------------------------------------------------- /PingID/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingidentity/Postman-Calls/HEAD/PingID/README.md -------------------------------------------------------------------------------- /PingID/pingid.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingidentity/Postman-Calls/HEAD/PingID/pingid.postman_collection.json -------------------------------------------------------------------------------- /Pre-Request script to generate a JWT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingidentity/Postman-Calls/HEAD/Pre-Request script to generate a JWT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingidentity/Postman-Calls/HEAD/README.md --------------------------------------------------------------------------------