organization

This commit is contained in:
Ean Milligan
2026-04-08 03:08:47 -04:00
parent be8cbb58f3
commit 1eac7180c0
3 changed files with 8 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
meta {
name: auth user
type: http
seq: 2
}
post {
url: http://localhost:14014/api/auth
body: json
auth: inherit
}
body:json {
{
"name": "teest",
"pin": "1234"
}
}
settings {
encodeUrl: true
timeout: 0
}

View File

@@ -0,0 +1,24 @@
meta {
name: enroll user
type: http
seq: 1
}
post {
url: http://localhost:14014/api/enroll
body: json
auth: inherit
}
body:json {
{
"name": "test",
"pin": "1234",
"email": ""
}
}
settings {
encodeUrl: true
timeout: 0
}

View File

@@ -0,0 +1,8 @@
meta {
name: User Endpoints
seq: 2
}
auth {
mode: inherit
}