Listar Indicações

Listar Indicações

GET https://api.gestao.plus/user-indication

Rota responsável pela listagem de indicados.

Headers

Name
Type
Description

Origin*

string

URL origem da requisição

Authorization*

string

Access Token no modelo "Bearer {Token}"

{
    "_links": {
        "self": {
            "href": "https://api.gestao.plus/user-indication"
        }
    },
    "_embedded": {
        "user_indication": [
            {
                "id": 4,
                "document": "12312312312",
                "name": "Softwares e Solucoes",
                "email": "[email protected]",
                "phone": null,
                "cellphone": "12312312312",
                "_links": {
                    "self": {
                        "href": "https://api.gestao.plus/user-indication/4"
                    }
                }
            },
            {
                "id": 666,
                "document": "123123123123",
                "name": "Conta Rapida",
                "email": "[email protected]",
                "phone": "(81) 13123123123",
                "cellphone": null,
                "_links": {
                    "self": {
                        "href": "https://api.gestao.plus/user-indication/19"
                    }
                }
            }
        ]
    },
    "total_items": 3
}

Last updated

Was this helpful?