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/molestiae" \
  -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/beatae/reply" \
  -H "Authorization: Bearer <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "reply": "excepturi"
  }'

Dispute Feedback

Disputes a specific feedback.

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

Authorization

AuthorizationRequiredBearer <token>

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

In: header

Request Body

application/jsonRequired
reasonRequiredstring

Path Parameters

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