Description
For Neople
Is there a specific app this action is for?
Yes, this is for Returnista — a returns management platform for e-commerce.
Please provide a link to the relevant API docs for the specific service / operation.
https://platform.returnista.com/reference/rest-api/
Requested Actions
1. Get Return Order (Read a single return order)
Retrieve a single return order by ID, including status, date, price, return reason, and other details.
- Endpoint:
GET /account/:accountId/return-order/:id - Docs: https://platform.returnista.com/reference/rest-api/
2. List Return Orders (Read all return orders)
Retrieve a list of all return orders for an account, with filtering by status, date, return reason, etc.
- Endpoint:
GET /account/:accountId/return-orders - Docs: https://platform.returnista.com/reference/rest-api/
3. Approve Return Request
Approve a draft return order request, accepting it for further processing.
- Endpoint:
PUT /account/{accountId}/draft-return-order/{draftReturnOrderId}/accept - Docs: https://platform.returnista.com/reference/rest-api/
4. Reject Return Request
Reject a draft return order request.
- Endpoint:
PUT /account/{accountId}/draft-return-order/{draftReturnOrderId}/reject - Docs: https://platform.returnista.com/reference/rest-api/
5. Create Return Label (multi-step)
Create a return shipping label. This involves the following steps:
Step 5a: Create Draft Return Order
Create a new draft return order for a consumer.
- Endpoint:
POST /consumer/{consumerId}/draft-return-order - Docs: https://platform.returnista.com/reference/rest-api/
Step 5b: Accept Return Request
Accept the draft return order to confirm it.
- Endpoint:
PUT /account/{accountId}/draft-return-order/{draftReturnOrderId}/accept - Docs: https://platform.returnista.com/reference/rest-api/
Step 5c: Get Return Order Data (for label URL)
Retrieve the return order details including the label URL.
- Endpoint:
GET /account/:accountId/return-order/:id - Docs: https://platform.returnista.com/reference/rest-api/
6. Resend Confirmation Email
Resend the confirmation email for a return order.
- Endpoint:
GET /account/:accountId/return-order/:id/resend-confirmation-email - Docs: https://platform.returnista.com/reference/rest-api/