mirror of
https://github.com/usebruno/bruno.git
synced 2024-12-11 17:20:39 +01:00
25 lines
318 B
TOML
25 lines
318 B
TOML
|
[meta]
|
||
|
name = 'Get users'
|
||
|
type = 'http'
|
||
|
seq = 1
|
||
|
|
||
|
[http]
|
||
|
method = 'GET'
|
||
|
url = 'https://reqres.in/api/users'
|
||
|
|
||
|
[headers]
|
||
|
raw = '''
|
||
|
[
|
||
|
{
|
||
|
"name": "Content-Type",
|
||
|
"value": "application/json",
|
||
|
"enabled": true
|
||
|
},
|
||
|
{
|
||
|
"name": "Content-Type",
|
||
|
"value": "application/ld+json",
|
||
|
"enabled": true
|
||
|
}
|
||
|
]
|
||
|
'''
|