Customer reviews submitted at the end of orders are retrievable via the API.
<aside> ➡️
GET /reviews/freelancer/:id
Retrieves a set of Review objects for the specified user ID.
Path variables:
Name | Type | Description |
---|---|---|
id |
String | The ID of the freelancer to request reviews for |
Response body:
Name | Type | Description |
---|---|---|
reviews |
Array of Review objects | The retrieved reviews |
</aside> |
Name | Type | Description |
---|---|---|
rating |
Integer | The rating, 1-5, given by the client |
review |
String | The client-provided review |
reviewer |
CandorUser object | The client who submitted the review |
reviewed |
CandorUser object | The freelancer who was reviewed |