Get event by id
GET
/v1/event/{id}Get event information by id
Requisição
Parâmetros Path
id
string
requerido
Exemplos de Requisição
Respostas
OK(200)
Não autorizado(401)
Proibido(403)
Registro não encontrado(404)
Código HTTP: 200
Tipo de Conteúdo: JSONapplication/json
Event found successfully
Esquema de Dados
id
string
opcional
name
string
opcional
description
string
opcional
company_id
string
opcional
init_date
string <date>
opcional
end_date
string <date>
opcional
status
enum<string>
opcional
Valores permitidos:
SCHEDULEDPUBLISHEDOPENEDIN_PROGRESSCANCELEDFINISHED
address
object (AddressResponse)
opcional
street
string
opcional
number
string
opcional
complement
string
opcional
neighborhood
string
opcional
city
string
opcional
state
string
opcional
country
string
opcional
zip_code
string
opcional
configuration
object
opcional
Additional properties
string
opcional
Exemplo
{
"id": "string",
"name": "string",
"description": "string",
"company_id": "string",
"init_date": "2019-08-24",
"end_date": "2019-08-24",
"status": "SCHEDULED",
"address": {
"street": "string",
"number": "string",
"complement": "string",
"neighborhood": "string",
"city": "string",
"state": "string",
"country": "string",
"zip_code": "string"
},
"configuration": {
"property1": "string",
"property2": "string"
}
}
Last modified: 4 months ago