Temporários

Listar todas as pessoas da área de transferência (Auth)

get
Autorizações
Respostas
200

Sucesso.

get
GET /api/2/users/temp HTTP/1.1
Host: seu_endereco.do.zeev
Authorization: YOUR_API_KEY
Accept: */*
{
  "userTempId": 1,
  "username": "text",
  "name": "text",
  "email": "text",
  "document": "text",
  "identification": "text"
}

Sincronizar e inserir as pessoas da área de transferência selecionados (Auth)

post
Autorizações
Corpo
usernamestring · mín: 3 · máx: 50Obrigatório
namestring · mín: 3 · máx: 128Obrigatório
emailstring · mín: 3 · máx: 128Obrigatório
cpfstring · mín: 11 · máx: 11Opcional
identificationstring · máx: 32Opcional
Respostas
200

Sucesso.

post
POST /api/2/users/temp HTTP/1.1
Host: seu_endereco.do.zeev
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 85

{
  "username": "text",
  "name": "text",
  "email": "text",
  "cpf": "text",
  "identification": "text"
}
{
  "result": 0,
  "username": "text",
  "name": "text",
  "email": "text",
  "cpf": "text",
  "identification": "text"
}

Transformar pessoas temporárias em pessoas finais (Auth)

post
Autorizações
Corpo
userNamesstring[]Obrigatório
Respostas
200

Sucesso.

post
POST /api/2/users/temp/import HTTP/1.1
Host: seu_endereco.do.zeev
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 39

{
  "userNames": [
    "user1",
    "user2",
    "user3"
  ]
}
{
  "success": true
}

Atualizado