Skip to content

Commit

Permalink
add delete
Browse files Browse the repository at this point in the history
  • Loading branch information
robertotcestari committed Apr 30, 2024
1 parent ada4e46 commit b97ccbf
Showing 1 changed file with 22 additions and 28 deletions.
50 changes: 22 additions & 28 deletions src/app/orders-api/page.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -232,26 +232,38 @@ Este endpoint permite que você recupere uma lista paginada de todos os seus ped
<Row>
<Col>

Este endpoint permite que você apague um único pedido. Se o pedido não for encontrado, uma resposta 404 será retornada. Se o pedido for encontrado, uma resposta 200 será retornada sem corpo.
Este endpoint permite que você visualize um único pedido.

</Col>
<Col sticky>

<CodeGroup title="Request" tag="GET" label="/orders-api/orders/{id}">

```bash {{ title: 'cURL' }}
curl -X "DELETE" https://apis.codante.io/api/orders-api/orders/1 \
curl -G https://apis.codante.io/api/orders-api/orders/1 \
```

```js
const response = await fetch('https://apis.codante.io/api/orders-api/orders/1', {
method: 'DELETE'
})
const jsonResponse = await response.json()
const response = await fetch('https://apis.codante.io/api/orders-api/orders/1')
const orders = await response.json()
```

</CodeGroup>

```json {{ title: 'Response' }}
{
"data": {
"id": 1,
"customer_name": "Benjamin Pacheco",
"customer_email": "benjamin.pacheco@example.net",
"order_date": "2022-09-24",
"amount_in_cents": 9916,
"status": "completed",
"created_at": "2024-04-29T19:00:02.000000Z",
"updated_at": "2024-04-29T19:00:02.000000Z"
}
}
```

</Col>
</Row>
Expand All @@ -264,41 +276,23 @@ Este endpoint permite que você apague um único pedido. Se o pedido não for en
<Row>
<Col>

Este endpoint permite que você apague um único pedido.


Este endpoint permite que você apague uma entrada. Caso o pedido não exista, um código de status 404 será retornado.

</Col>
<Col sticky>

<CodeGroup title="Request" tag="GET" label="/orders-api/orders/{id}">
<CodeGroup title="Request" tag="DELETE" label="/orders-api/orders/{id}">

```bash {{ title: 'cURL' }}
curl -G https://apis.codante.io/api/orders-api/orders/1 \
curl -X "DELETE" https://apis.codante.io/api/orders-api/orders/1 \
```

```js
const response = await fetch('https://apis.codante.io/api/orders-api/orders/1')
const orders = await response.json()
const response = await fetch('https://apis.codante.io/api/orders-api/orders/1', { method: 'DELETE' })
```

</CodeGroup>

```json {{ title: 'Response' }}
{
"data": {
"id": 1,
"customer_name": "Benjamin Pacheco",
"customer_email": "benjamin.pacheco@example.net",
"order_date": "2022-09-24",
"amount_in_cents": 9916,
"status": "completed",
"created_at": "2024-04-29T19:00:02.000000Z",
"updated_at": "2024-04-29T19:00:02.000000Z"
}
}
```

</Col>
</Row>
````

0 comments on commit b97ccbf

Please sign in to comment.