Last active
July 13, 2025 21:24
-
-
Save ashwch/2a9d05024ac43479782092acbd4eae8f to your computer and use it in GitHub Desktop.
Bruno API file example for User Metrics endpoint - demonstrates comprehensive .bru file structure with auth, tests, scripts, and documentation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| meta { | |
| name: User Metrics | |
| type: http | |
| seq: 1 | |
| } | |
| get { | |
| url: {{BASE_URL}}/api/v2/companies/{{COMPANY_ID}}/user-metrics/ | |
| body: none | |
| auth: bearer | |
| } | |
| headers { | |
| Authorization: Bearer {{JWT_TOKEN}} | |
| Content-Type: application/json | |
| } | |
| auth:bearer { | |
| token: {{JWT_TOKEN}} | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment