@baseUrl = https://api.example.com @resourceId = replace-with-id-from-create-response ### Create a resource POST {{baseUrl}}/widgets Accept: application/json Content-Type: application/json { "name": "Sample widget" } ### Fetch it after manually copying the returned ID into resourceId GET {{baseUrl}}/widgets/{{resourceId}} Accept: application/json