-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.http
22 lines (17 loc) · 888 Bytes
/
test.http
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
GET http://localhost:4004/odata/v4/user-management/User
###
GET http://localhost:4004/odata/v4/user-management/User(1)
###
POST http://localhost:4004/odata/v4/user-management/User
Content-Type: application/json
{ "ID": "bb170cd9-12b4-4b8b-ab1c-836cdf1bd845", "email": "[email protected]", "password": "abcdef", "active": true, "confirmationCode": "ABCDE", "creationTimeConfirmationCode": "2021-06-27T14:52:23Z" }
###
DELETE http://localhost:4004/odata/v4/user-management/User(2)
###
PATCH http://localhost:4004/odata/v4/user-management/User(2)
Content-Type: application/json
{ "confirmationCode": "ABCDEF" }
###
PUT http://localhost:4004/odata/v4/user-management/User(2)
Content-Type: application/json
{ "ID": "bb170cd9-12b4-4b8b-ab1c-836cdf1bd845", "email": "[email protected]", "password": "abcdef", "active": true, "confirmationCode": "ABCDE", "creationTimeConfirmationCode": "2021-06-27T14:52:23Z" }