Skip to content

Commit

Permalink
fix: adjust test/audit-logging.http to changing the customer's id to …
Browse files Browse the repository at this point in the history
…a string (#63)
  • Loading branch information
sjvans authored Jun 20, 2024
1 parent cedce03 commit 259abc1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/audit-logging.http
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,15 @@ Authorization: Basic alice:wonderland
Content-Type: application/json

{
"ID": "{{$guid}}",
"ID": "{{$randomInt 9000000 9999999}}",
"firstName": "Bob",
"lastName": "Builder",
"email": "[email protected]"
}

### Updating a customer with personal data details
@customer = {{create_customer.response.body.ID}}
PATCH {{host}}/odata/v4/admin/Customers({{customer}})
PATCH {{host}}/odata/v4/admin/Customers('{{customer}}')
Authorization: Basic alice:wonderland
Content-Type: application/json

Expand Down

0 comments on commit 259abc1

Please sign in to comment.