The Fluid Rep APIs provide endpoints for authenticated Reps (Users) to access their own data and perform actions on their behalf.
E-mail support@fluid.app
License MIT
The Fluid Rep APIs provide endpoints for authenticated Reps (Users) to access their own data and perform actions on their behalf.
These APIs use User tokens for authentication. User tokens are obtained through:
/api/user_companies/jwt_exchange)/api/user_companies/token_exchange)Unlike Company APIs which use Company API tokens for administrative access, Rep APIs authenticate the individual user and provide access to their personal data, orders, team, and settings.
For Company-level management APIs, see the Company APIs documentation.
curl -i -X GET \ 'https://docs.fluid.app/_mock/docs/apis/rep/api/tasks?contact_id=0&status=string' \ -H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
[ { "id": 891, "title": "Follow up with Michael about paper order", "description": "He needs 50 reams of premium copy paper for the holiday party invitations.", "status": "pending", "priority": "high", "due_date": "2024-01-20", "contact": { … }, "created_at": "2024-01-15T09:30:00Z" }, { "id": 892, "title": "Send product catalog to Pam", "description": "She's interested in our new recycled paper line.", "status": "pending", "priority": "medium", "due_date": "2024-01-22", "contact": { … }, "created_at": "2024-01-16T11:00:00Z" }, { "id": 893, "title": "Call Jim about the Stamford account", "description": null, "status": "completed", "priority": "low", "due_date": "2024-01-18", "completed_at": "2024-01-18T15:45:00Z", "contact": { … }, "created_at": "2024-01-14T08:00:00Z" } ]