POST api/RetornoMeli
Método para consultar o pedido pelo código. Será retornado as informações sobre o pedido.
Request Information
URI Parameters
None.
Body Parameters
RetornoMeliModel| Name | Description | Type | Additional information |
|---|---|---|---|
| received | date |
None. |
|
| resource | string |
None. |
|
| user_id | integer |
None. |
|
| topic | string |
None. |
|
| application_id | integer |
None. |
|
| attempts | integer |
None. |
|
| sent | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"received": "2026-06-13T12:26:56.8826853-03:00",
"resource": "sample string 2",
"user_id": 3,
"topic": "sample string 4",
"application_id": 5,
"attempts": 6,
"sent": "2026-06-13T12:26:56.8826853-03:00"
}
application/xml, text/xml
Sample:
<RetornoMeliModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApi.Models"> <Application_id>5</Application_id> <Enviados>2026-06-13T12:26:56.8826853-03:00</Enviados> <Recebido>2026-06-13T12:26:56.8826853-03:00</Recebido> <Resource>sample string 2</Resource> <Tentativas>6</Tentativas> <Topico>sample string 4</Topico> <User_id>3</User_id> </RetornoMeliModel>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |