cURL
curl --request GET \ --url https://staging-api.puppetvendors.com/users/{userId} \ --header 'x-access-token: <api-key>'
Retrieve a single vendor portal user by ID
Documentation IndexFetch the complete documentation index at: https://dev.puppetvendors.com/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: https://dev.puppetvendors.com/llms.txt
Use this file to discover all available pages before exploring further.
{ "success": true, "data": { "_id": "507f1f77bcf86cd799439030", "firstName": "Jane", "lastName": "Smith", "email": "jane@example.com", "vendorId": "507f1f77bcf86cd799439012", "approved": true, "lastLogin": "2026-04-14T10:05:00Z", "createdAt": "2025-09-01T12:00:00Z" } }
curl -X GET "https://staging-api.puppetvendors.com/users/507f1f77bcf86cd799439030" \ -H "x-access-token: YOUR_VENDOR_JWT"
Was this page helpful?