Skip to content

Commit

Permalink
chore: run prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
nprimo committed Nov 22, 2023
1 parent bafc400 commit 3c59587
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions subjects/devops/crud-master-py/audit/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,11 @@
#### Inventory API Endpoints

##### Open Postman and make a `POST` request to `http://[GATEWAY_IP]:[GATEWAY_PORT]/api/movies/` address with the following body as `Content-Type: application/json`:

```json
{
"title": "A new movie",
"description": "Very short description"
"title": "A new movie",
"description": "Very short description"
}
```

Expand All @@ -55,11 +56,12 @@
#### Billing API Endpoints

##### Open Postman and make a `POST` request to `http://[GATEWAY_IP]:[GATEWAY_PORT]/api/billing/` address with the following body as `Content-Type: application/json`:

```json
{
"user_id": "20",
"number_of_items": "99",
"total_amount": "250"
"user_id": "20",
"number_of_items": "99",
"total_amount": "250"
}
```

Expand All @@ -70,11 +72,12 @@
###### Can you confirm the `billing_app` API was correctly stopped?

##### Open Postman and make a `POST` request to `http://[GATEWAY_IP]:[GATEWAY_PORT]/api/billing/` address with the following body as `Content-Type: application/json`:

```json
{
"user_id": "22",
"number_of_items": "10",
"total_amount": "50"
"user_id": "22",
"number_of_items": "10",
"total_amount": "50"
}
```

Expand Down

0 comments on commit 3c59587

Please sign in to comment.