Breadcrumbs

Invoking endpoints with JWT token

Step 1 - Authenticate

Authenticate

STEP 2 - Invoke endpoint passing the JWT as Bearer

Request

JSON
curl --location 'https://{URL}/api/{ENDPOINT}/' 
\ --header 'Authorization: Bearer {BEARER}' 
\ --header 'Content-Type: application/json' 
\ --data '{PAYLOAD}'