aboutsummaryrefslogtreecommitdiff
path: root/files/pt-br/web/http/methods/delete/index.html
blob: 1bfc4b855a3ce4803625307287860ecc22d7d27b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
---
title: DELETE
slug: Web/HTTP/Methods/DELETE
tags:
  - HTTP
  - Método HTTP
  - Método de requisição
  - Referencia
translation_of: Web/HTTP/Methods/DELETE
---
<div>{{HTTPSidebar}}</div>

<div>O <strong>método de requisição HTTP DELETE</strong> remove o recurso especificado.</div>

<table class="properties">
 <tbody>
  <tr>
   <th scope="row">Requisição tem corpo</th>
   <td>Talvez</td>
  </tr>
  <tr>
   <th scope="row">A resposta bem sucedida tem corpo</th>
   <td>Talvez</td>
  </tr>
  <tr>
   <th scope="row">{{Glossary("Seguro")}}</th>
   <td>Não</td>
  </tr>
  <tr>
   <th scope="row">{{Glossary("Idempotente")}}</th>
   <td>Sim</td>
  </tr>
  <tr>
   <th scope="row">{{Glossary("Cacheável")}}</th>
   <td>Não</td>
  </tr>
  <tr>
   <th scope="row">Aceito nos <a href="/en-US/docs/Web/Guide/HTML/Forms">formulários HTML</a></th>
   <td>Não</td>
  </tr>
 </tbody>
</table>

<h2 id="Sintaxe">Sintaxe</h2>

<pre class="syntaxbox notranslate">DELETE /arquivo.html HTTP/1.1
</pre>

<h2 id="Exemplo">Exemplo</h2>

<h3 id="Requisição">Requisição</h3>

<pre class="notranslate">DELETE /arquivo.html HTTP/1.1</pre>

<h3 id="Respostas">Respostas</h3>

<p>Se um método <code>DELETE</code> for aplicado com sucesso, há muitos códigos de status de resposta possíveis:</p>

<ul>
 <li> Um código de status {{HTTPStatus("202")}} (<code>Accepted</code>) se a ação provavelmente teve sucesso, porém ainda não foi realizada.</li>
 <li>Um código de status {{HTTPStatus("204")}} (<code>No Content</code>) se a ação foi realizada e nenhuma outra informação deve ser fornecida.</li>
 <li>Um código de status {{HTTPStatus("200")}} (<code>OK</code>) se a ação foi realizada e a mensagem de resposta inclui uma representação descrevendo o status.</li>
</ul>

<pre class="notranslate">HTTP/1.1 200 OK
Date: Wed, 21 Oct 2015 07:28:00 GMT

&lt;html&gt;
  &lt;body&gt;
    &lt;h1&gt;Arquivo removido.&lt;/h1&gt;
  &lt;/body&gt;
&lt;/html&gt;</pre>

<h2 id="Especificações">Especificações</h2>

<table class="standard-table">
 <tbody>
  <tr>
   <th scope="col">Especificação</th>
   <th scope="col">Título</th>
  </tr>
  <tr>
   <td>{{RFC("7231", "DELETE", "4.3.5")}}</td>
   <td>Protocolo de Transferência de Hipertexto (HTTP/1.1): Semântica e conteúdo</td>
  </tr>
 </tbody>
</table>

<h2 id="Browser_compatibility">Compatibilidade com navegadores</h2>

<p>{{Compat("http.methods.DELETE")}}</p>

<h2 id="Veja_também">Veja também</h2>

<ul>
 <li>HTTP status: {{HTTPStatus("200")}}, {{HTTPStatus("202")}}, {{HTTPStatus("204")}}</li>
</ul>