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 654279a commit ada4e46
Showing 1 changed file with 34 additions and 1 deletion.
35 changes: 34 additions & 1 deletion src/app/orders-api/page.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,39 @@ Este endpoint permite que você recupere uma lista paginada de todos os seus ped
<Row>
<Col>

Este endpoint permite que você visualize um único pedido.
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.

</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 \
```

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

</CodeGroup>


</Col>
</Row>


---

## Apagar Pedido {{ tag: 'DELETE', label: '/orders-api/orders/{id}' }}

<Row>
<Col>

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



Expand Down Expand Up @@ -269,3 +301,4 @@ Este endpoint permite que você visualize um único pedido.

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

0 comments on commit ada4e46

Please sign in to comment.