22 lines
223 B
Plaintext
22 lines
223 B
Plaintext
|
meta {
|
||
|
name: Create Profile
|
||
|
type: http
|
||
|
seq: 1
|
||
|
}
|
||
|
|
||
|
post {
|
||
|
url: {{base_url}}/profiles
|
||
|
body: json
|
||
|
auth: bearer
|
||
|
}
|
||
|
|
||
|
auth:bearer {
|
||
|
token: {{access_token}}
|
||
|
}
|
||
|
|
||
|
body:json {
|
||
|
{
|
||
|
"name": "{{current_profile}}"
|
||
|
}
|
||
|
}
|