Skip to main content

Authentication

All API endpoints require a Bearer token in the Authorization header.

Getting Your Token

API tokens are issued from the RenovationFind Manager Portal. Contact your account manager if you don’t have one.

Making Requests

Include the token in every request:
curl -X GET https://www.renovationfind.com/rest-api-v1/customer-feedback-system \
  -H "Authorization: Bearer YOUR_JWT_TOKEN" \
  -H "Content-Type: application/json"

Example: Create a CFS Request

curl -X POST https://www.renovationfind.com/rest-api-v1/customer-feedback-system \
  -H "Authorization: Bearer YOUR_JWT_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "customerName": "John Doe",
    "email": "john@example.com",
    "phone": "5551234567"
  }'

Token Details

  • Tokens are JWT-based and tied to your vendor account
  • Each vendor has one active token at a time
  • Tokens do not expire but can be regenerated from the Manager Portal (this invalidates the previous token)