Metar overhaul, added footer, updated schemas

This commit is contained in:
2025-05-19 16:09:02 -04:00
parent 2ecb82ae63
commit ed98140d22
54 changed files with 1084 additions and 4924 deletions

View File

@@ -1,7 +1,7 @@
meta {
name: Change Password
type: http
seq: 4
seq: 6
}
put {
@@ -11,7 +11,9 @@ put {
}
body:json {
"New Password"
{
"password": "New Password"
}
}
script:post-response {

View File

@@ -0,0 +1,18 @@
meta {
name: Confirm Password Reset
type: http
seq: 8
}
post {
url: {{API_URL}}/account/password/verify
body: json
auth: none
}
body:json {
{
"token": "token",
"password": "New Password"
}
}

View File

@@ -1,7 +1,7 @@
meta {
name: Get Profile
type: http
seq: 7
seq: 10
}
get {

View File

@@ -1,7 +1,7 @@
meta {
name: Login
type: http
seq: 2
seq: 4
}
post {
@@ -12,7 +12,7 @@ post {
body:json {
{
"email": "admin@example.com",
"username": "user",
"password": "changeme"
}
}

View File

@@ -1,7 +1,7 @@
meta {
name: Logout
type: http
seq: 3
seq: 5
}
post {
@@ -12,7 +12,7 @@ post {
body:json {
{
"email": "john.doe@gmail.com",
"password": "fake_password123"
"email": "user@gmail.com",
"password": "changeme"
}
}

View File

@@ -1,7 +1,7 @@
meta {
name: Refresh Session
type: http
seq: 6
seq: 9
}
get {

View File

@@ -12,9 +12,10 @@ post {
body:json {
{
"email": "john.doe@gmail.com",
"password": "fake_password123",
"first_name": "John",
"last_name": "Doe"
"username": "user",
"email": "user@example.com",
"password": "changeme",
"firstName": "John",
"lastName": "Doe"
}
}

View File

@@ -0,0 +1,11 @@
meta {
name: Resend Email Confirmation
type: http
seq: 2
}
post {
url: {{API_URL}}/account/register/resend
body: none
auth: none
}

View File

@@ -1,11 +1,17 @@
meta {
name: Reset Password
type: http
seq: 5
seq: 7
}
post {
url: {{API_URL}}/account/password/reset
body: none
body: json
auth: none
}
body:json {
{
"email": "user@example.com"
}
}

View File

@@ -0,0 +1,17 @@
meta {
name: Verify Email Confirmation
type: http
seq: 3
}
post {
url: {{API_URL}}/account/register/verify
body: json
auth: none
}
body:json {
{
"token": "token"
}
}

3
bruno/Account/folder.bru Normal file
View File

@@ -0,0 +1,3 @@
meta {
name: Account
}