Step 1: Get your Rampart keys

You can get your Rampart keys from the Rampart Command Center or by requesting access from support. Here are the keys you’ll need:

KeyDescription
API KeyUsed to authenticate your requests to the Rampart API. This key should be included in the Authorization header of all your API requests as a Bearer token.
Signing KeyUsed to sign JWT tokens for the SSO integration. This key is used to cryptographically sign payloads to ensure data integrity and authenticity when users authenticate through your application.

Never expose any of these keys in client-side code.

Step 2: Make your first API Call

curl -X GET "https://api.rampartcorporation.com/partner" \
  -H "Authorization: Bearer {RAMPART_API_KEY}"

Next Steps