- Add GET /contractors/by-residence/:residence_id/ endpoint - Create comprehensive Bruno API collection (89 endpoints) - Collection covers all API endpoints with Local and Dev environments 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
20 lines
251 B
Plaintext
20 lines
251 B
Plaintext
meta {
|
|
name: Reset Password
|
|
type: http
|
|
seq: 8
|
|
}
|
|
|
|
post {
|
|
url: {{api_url}}/auth/reset-password/
|
|
body: json
|
|
auth: none
|
|
}
|
|
|
|
body:json {
|
|
{
|
|
"email": "user@example.com",
|
|
"code": "123456",
|
|
"new_password": "newSecurePassword123"
|
|
}
|
|
}
|