SellAuth

Feedbacks

Get Feedbacks

Retrieves the feedbacks.

GET
/v1/shops/{shopId}/feedbacks

Authorization

AuthorizationRequiredBearer <token>

You can retrieve your API key by visiting your dashboard and clicking Account > API.

In: header

Path Parameters

shopIdRequiredinteger
curl -X GET "https://api.sellauth.com/v1/shops/{shopId}/feedbacks" \
  -H "Authorization: Bearer <token>"

{
  "message": "No query results for model [App\\Models\\Shop] 1"
}

Get Feedback

Retrieves a specific feedback.

GET
/v1/shops/{shopId}/feedbacks/{feedbackId}

Authorization

AuthorizationRequiredBearer <token>

You can retrieve your API key by visiting your dashboard and clicking Account > API.

In: header

Path Parameters

shopIdRequiredinteger
feedbackIdRequiredstring
curl -X GET "https://api.sellauth.com/v1/shops/{shopId}/feedbacks/illo" \
  -H "Authorization: Bearer <token>"

{
  "message": "No query results for model [App\\Models\\Shop] 1"
}

Reply to Feedback

Replies to a specific feedback.

POST
/v1/shops/{shopId}/feedbacks/{feedbackId}/reply

Authorization

AuthorizationRequiredBearer <token>

You can retrieve your API key by visiting your dashboard and clicking Account > API.

In: header

Request Body

application/jsonRequired
replyRequiredstring

Path Parameters

shopIdRequiredinteger
feedbackIdRequiredstring
curl -X POST "https://api.sellauth.com/v1/shops/{shopId}/feedbacks/aut/reply" \
  -H "Authorization: Bearer <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "reply": "id"
  }'

Appeal Feedback

Appeals a specific feedback.

POST
/v1/shops/{shopId}/feedbacks/{feedbackId}/appeal

Authorization

AuthorizationRequiredBearer <token>

You can retrieve your API key by visiting your dashboard and clicking Account > API.

In: header

Path Parameters

shopIdRequiredinteger
feedbackIdRequiredstring
curl -X POST "https://api.sellauth.com/v1/shops/{shopId}/feedbacks/nemo/appeal" \
  -H "Authorization: Bearer <token>"