GET v1/ads/{adid}/specs
Retorna as Especificações de um anúncio através do código informado
Requires Authorization
To perform authorization, you must submit the authentication credentials using the HTTP Basic authorization header.
The authorization header is constructed as follows:
- The username and password are combined into a string "user:password"
- The resulting literal string is then encoded in Base64
- The authorization method followed by the word "Basic" is then placed before the coded sequence.
Authorization: Basic QWxhZGRpbjpvcGVuLXNlc2FtZQ==
Response Codes
- OK (200)
- BadRequest (400)
- Unauthorized (401)
- Forbidden (403)
- NotFound (404)
Request Information
URL Parameters
The parameters must be in the request URL.
Name | Description | Type | Additional Information |
---|---|---|---|
adId | Ad identification code in the Mercado Máquinas. | integer | Required |
Request body parameters
These parameters must be in the request Body.
Description not available.
Response Information
Resource Description
AdSpecResponse array Returns the specifications of an Ad according to the identification code in the Mercado Máquinas.
Name | Description | Type | Additional Information |
---|---|---|---|
Name | Specification Unique Name | string | |
Group | Specification Group Name | string | |
Description | Specification Description | string | |
DataType | Specification data type | string | |
IsRequired | Identifies if the Specification is required | boolean | |
UnitOfMeasurement | Specification unit of measurement | string | |
IsList | Indicates whether the specification is a list with fixed values | boolean | |
ListOfValues | Accepted values for the specification when it is a list | string array |
Response Formats
application/json, text/json
Notes:
- In Json format, the parameter names follow the camelCase pattern, that is, they always start with lowercase letters.
[ { "name": "numero-de-serie", "group": "Informações Gerais", "description": "Número de série é o código que identifica máquinas, peças e acessórios e obter informações adicionais no fabricante.", "dataType": "text", "isRequired": false, "unitOfMeasurement": null, "isList": false, "listOfValues": null }, { "name": "cor-predominante", "group": "Informações Gerais", "description": "Informar a cor predominante do equipamento.", "dataType": "text", "isRequired": false, "unitOfMeasurement": null, "isList": true, "listOfValues": [ "amarelo", "azul", "indefinida", "laranja", "marron" ] }, { "name": "utilizacao-horas", "group": "Utilização", "description": "Quantidade de horas completas trabalhadas. (Ex.: 2.350,8 horas digite apenas 2350)", "dataType": "number", "isRequired": true, "unitOfMeasurement": "h", "isList": false, "listOfValues": null } ]
text/html
[{"name":"numero-de-serie","group":"Informações Gerais","description":"Número de série é o código que identifica máquinas, peças e acessórios e obter informações adicionais no fabricante.","dataType":"text","isRequired":false,"unitOfMeasurement":null,"isList":false,"listOfValues":null},{"name":"cor-predominante","group":"Informações Gerais","description":"Informar a cor predominante do equipamento.","dataType":"text","isRequired":false,"unitOfMeasurement":null,"isList":true,"listOfValues":["amarelo","azul","indefinida","laranja","marron"]},{"name":"utilizacao-horas","group":"Utilização","description":"Quantidade de horas completas trabalhadas. (Ex.: 2.350,8 horas digite apenas 2350)","dataType":"number","isRequired":true,"unitOfMeasurement":"h","isList":false,"listOfValues":null}]