fleshout backend

This commit is contained in:
KS Jannette
2026-08-03 04:23:32 -04:00
parent a00282b1e6
commit 092ef17439
19 changed files with 500 additions and 52 deletions

View File

@@ -1,4 +1,5 @@
@Backend_HostAddress = http://localhost:5231
@UserId = 00000000-0000-0000-0000-000000000000
GET {{Backend_HostAddress}}/health
Accept: application/json
@@ -9,3 +10,37 @@ GET {{Backend_HostAddress}}/v1/info
Accept: application/json
###
GET {{Backend_HostAddress}}/v1/users
Accept: application/json
###
POST {{Backend_HostAddress}}/v1/users
Content-Type: application/json
{
"email": "ada@example.com",
"displayName": "Ada Lovelace"
}
###
GET {{Backend_HostAddress}}/v1/users/{{UserId}}
Accept: application/json
###
PUT {{Backend_HostAddress}}/v1/users/{{UserId}}
Content-Type: application/json
{
"email": "ada@example.com",
"displayName": "Ada King"
}
###
DELETE {{Backend_HostAddress}}/v1/users/{{UserId}}
###