- Convert all JSON tests to JavaScript functions for bruToJsonV2 compatibility
- Update authentication to use 'inherit' instead of manual headers
- Fix hardcoded URLs to use {{base_url}} variables
- Standardize variable syntax from {{ _.var }} to {{var}}
- Add comprehensive API documentation to all requests
- Update environment variables with missing required fields
- Apply consistent structure: meta, http method, headers, tests, vars, settings, docs
- Enhanced validation with proper error handling and field checks
33 lines
511 B
Plaintext
33 lines
511 B
Plaintext
meta {
|
|
name: Delete Ebook Rating
|
|
type: http
|
|
seq: 8
|
|
}
|
|
|
|
delete {
|
|
url: {{base_url}}/api/ebooks/{{ebookid}}/rating
|
|
body: none
|
|
auth: inherit
|
|
}
|
|
|
|
settings {
|
|
encodeUrl: true
|
|
timeout: 0
|
|
}
|
|
|
|
docs {
|
|
## Delete Ebook Rating
|
|
|
|
Deletes the authenticated user's rating for a specific ebook.
|
|
|
|
**Authentication:** Required (Bearer token)
|
|
|
|
**Path Parameters:**
|
|
- `id` (string): Ebook UUID
|
|
|
|
**Response:** No content (204)
|
|
|
|
**Error Responses:**
|
|
- 401: Invalid authentication
|
|
- 404: Rating not found
|
|
} |