cURL
curl --request GET \ --url https://api.example.com/partner/partners/{partner_id} \ --header 'Authorization: Bearer <token>'
{ "org_id": 123, "full_name": "<string>", "email": "jsmith@example.com", "id": 123, "created_at": "2023-11-07T05:31:56Z", "updated_at": "2023-11-07T05:31:56Z", "phone": "<string>", "role": "partner", "is_active": true, "user_id": 123, "last_login_at": "2023-11-07T05:31:56Z" }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Successful Response