When Steps
Autokin REST Steps
When I GET {uri}
{uri}Scenario: Getting user information
Given that a endpoint is up at mydomain.com
Given I set Content-Type header to application/json
Given I set DocId header to 3001
When I GET /users/infoWhen I POST to {uri}
{uri}Scenario: Creating a new task
Given that a secure endpoint is up at mydomain.com
Given I set Content-Type header to application/json
Given I set the JSON body to
"""
`{
"name": "New Task",
"priority": 1,
"notes": "Go document things"
}`
"""
When I POST to /tasksWhen I PUT to {uri}
{uri}When I perform DELETE to {uri}
{uri}When I PATCH to {uri}
{uri}Last updated
Was this helpful?