Files
bgApp/API Tests/BGApp/User/Update.yml

35 lines
528 B
YAML

info:
name: Update
type: http
seq: 3
http:
method: PATCH
url: "{{BASE_URL}}/{{SECTOR}}/{{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