Condomínio

Listar todos os seus condomínios

GET https://sol.interfoneip.com/me/condominios

Headers

Name
Type
Description

Authentication

string

Bearer JWT Tokken

[
    {
        "id": 20,
        "prefixo": "1",
        "nome": "Bloco 1",
        "razao_social": null,
        "cnpj": 11111111111111,
        "condominio_pai": 19,
        "sindico_id": [],
        "created_at": "2019-07-01 11:19:06",
        "updated_at": "2019-07-01 11:38:51",
        "logradouro": "Rua X",
        "numero": "X",
        "complemento": null,
        "cep": "XXXXX-XXX",
        "cidade": "Belo Horizonte",
        "estado": "MG",
        "servidor_id": 1,
        "bairro": "Itatiaia",
        "usuario_id": 86,
        "portaria": {
            "id": 267,
            "ramal": "C20A93R0",
            "camera": {
                "nome": "BL02 Grandstream",
                "modelo": "Grandstream GDS3710",
                "ipfixo": true,
                "url": "http://admin:[email protected]:8088/jpeg/stream"
            }
        },
        "ramais": [
            {
                "id": 1,
                "apartamento_id": 1,
                "usuario_id": null,
                "ativo": 1,
                "descricao": null,
                "created_at": "2019-07-01 11:19:06",
                "updated_at": "2019-07-01 11:19:06",
                "ramal": "CXA93R0",
                "senha": "dwadawd",
                "origem": "Portaria",
                "qualidade": 1,
                "gravar": 0,
                "permissao": 0,
                "ordem": 0,
                "condominio_id": 20
            }
        ]
    }
]

Busca Apartamentos de um Condomínio

GET https://sol.interfoneip.com/condominios/:id/apartamentos

Path Parameters

Name
Type
Description

id

string

id do Condominio

Headers

Name
Type
Description

Authentication

string

Bearer JWT Token

{
    "active": 2,
    "current_page": 1,
    "data": [
        {
            "id": 76,
            "identificacao": "Portaria",
            "ativo": 1,
            "condominio_id": 19,
            "usuario": [
                {
                    "id": 65,
                    "login": "",
                    "email": "[email protected]",
                    "nome": "Diogo TCL",
                    "telefone": 5435345,
                    "cpf": null,
                    "created_at": "2019-07-01 11:26:59",
                    "updated_at": "2019-09-11 10:07:46",
                    "ativo": 1,
                    "ligacoes_externas": "N",
                    "apartamento_id": 76
                }
            ]
        },
        {
            "id": 77,
            "identificacao": "11",
            "ativo": 1,
            "condominio_id": 19,
            "usuario": [
                {
                    "id": 84,
                    "login": "",
                    "email": "[email protected]",
                    "nome": "Rafael",
                    "telefone": 31996987727,
                    "cpf": null,
                    "created_at": "2019-10-15 15:10:16",
                    "updated_at": "2019-10-15 15:10:16",
                    "ativo": 1,
                    "ligacoes_externas": "N",
                    "apartamento_id": 77
                }
            ]
        }
    ],
    "first_page_url": "http://sol.interfoneip.com/condominios/19/apartamentos?page=1",
    "from": 1,
    "last_page": 1,
    "last_page_url": "http://sol.interfoneip.com/condominios/19/apartamentos?page=1",
    "next_page_url": null,
    "path": "http://sol.interfoneip.com/condominios/19/apartamentos",
    "per_page": 20,
    "prev_page_url": null,
    "to": 2,
    "total": 2
}

Buscar Usuários de um condomínio

GET https://sol.interfoneip.com/condominios/:id/usuarios

Path Parameters

Name
Type
Description

id

string

Id do condomínio

Headers

Name
Type
Description

Authentication

string

Bearer JWT Token

{
    "current_page": 1,
    "data": [
        {
            "id": 29,
            "nome": "Morador Teste",
            "email": "[email protected]",
            "login": "",
            "cpf": null,
            "telefone": 31777777777,
            "ativo": 1,
            "ligacoes_externas": "N",
            "usuario_has_apartamento": [
                {
                    "usuario_id": 29,
                    "apartamento_id": 37,
                    "permissao": "3",
                    "condominio_id": 6,
                    "modulos": [
                        3
                    ]
                }
            ],
            "apartamento": [
                {
                    "id": 37,
                    "condominio_id": 1,
                    "identificacao": "101",
                    "ativo": 1,
                    "created_at": "2019-04-12 17:41:54",
                    "updated_at": "2019-09-17 09:27:22",
                    "usuario_id": 29
                }
            ],
            "ramais_all": [
                {
                    "id": 129,
                    "apartamento_id": 37,
                    "usuario_id": 29,
                    "origem": "AP 101",
                    "ordem": 0
                }
            ]
        }
    ],
    "first_page_url": "/?page=1",
    "from": 1,
    "last_page": 1,
    "last_page_url": "/?page=1",
    "next_page_url": null,
    "path": "/",
    "per_page": 20,
    "prev_page_url": null,
    "to": 1,
    "total": 1
}

Buscar mensagem/contatos de suporte

GET https://sol.interfoneip.com/app/suporte?v=1

Headers

Name
Type
Description

Authentication

string

Bearer JWT Token

{
    "text": "Atendeaí \n Contato de Suporte: \n De segunda a sexta, de 09:00 às 18:00, \n sábado de 09:00 às 14:00",
    "mensagem_parceiro": "Interfones & Cia \n Suporte de segunda a sexta, de 08:00 às 18:00, \n sábado de 09:00 às 18:00 ",
    "telefone_parceiro": "31987654321",
    "email_parceiro": ""
}

Last updated

Was this helpful?