Files
bgApp/API Tests/BGApp/User/Update.yml
2026-02-21 17:56:28 +00:00

35 lines
526 B
YAML

info:
name: Update
type: http
seq: 3
http:
method: PATCH
url: "{{BASE_URL}}/api/user/{{UserID}}"
body:
type: json
data: |-
{
"isActive": {{IsActive}},
"isAdmin": {{IsAdmin}},
"email": "{{Email}}"
}
auth: inherit
runtime:
variables:
- name: UserID
value: ""
- name: IsActive
value: ""
- name: IsAdmin
value: ""
- name: Email
value: ""
settings:
encodeUrl: true
timeout: 0
followRedirects: true
maxRedirects: 5