Super Drive Contábil
  1. customers
Super Drive Contábil
  • File
    • change-file
      PATCH
  • auth
    • sign-in
      POST
    • generate-access-token
      POST
  • directory
    • create-directorie
      POST
    • list-all-directories
      GET
    • list-all-subdirectories-from-directory
      GET
    • list-files-in-directories
      GET
    • find-directorie-by-id
      GET
    • move-to-trash
      DELETE
    • restore-directory
      PATCH
    • change-diretorie
      PATCH
    • find-file-by-id
      GET
  • customers
    • change-customer
      PUT
    • create-customer
      POST
    • find-customer-by-id
      GET
    • search-customers-tem
      GET
    • list-all-customers
      GET
  • counter
    • create-counter
      POST
    • list-all-counters
      GET
    • find-counter-by-id
      GET
    • assign-counter-to-a-department
      PATCH
  • department
    • create-department
      POST
    • find-department-by-id
      GET
    • list-all-departments
      GET
    • list-users-in-deparment
      GET
  • assistant
    • create-assistant
    • list-all-assistants
    • find-assistant-by-id
    • assign-assistant-to-a-department
  • manager
    • create-manager
    • list-all-managers
    • find-manager-by-id
    • assign-manager-to-a-department
  • administrator
    • create-administrator
    • list-all-administrators
    • find-administrator-by-id
    • assign-administrator-to-a-department
  • contacts
    • create-contact
    • list-all-contacts
    • list-files-by-contact
    • list-contact-files-is-uploaded
    • list-contact-files-in-trash
    • search-by-term-in-contacts
    • list-contact-files-by-external-id
    • send-file-to-trash
    • restore-file-to-trash
    • delete-file-from-contact
  • cloud
    • upload-file-from-cloud
    • upload-file-from-contact
  • plan
    • create plan
    • list-all-plans
    • associate-plan-with-organization
  • users
    • list-all-users
    • search-user-by-term
    • change-user
  • integration
    • list-all-integration
  • Zappy
    • list-sections
    • list-connections
  • automations
    • create-automation
    • create-sharing-automation
    • list-all-automations
    • change-automation
    • create-automation-ia
  • channel
    • connection-channel
    • create-channel
    • disconnect-channel
    • create-connection-channel
    • list-channels
    • change-channel
  1. customers

create-customer

POST
https://api-hubcontabil.innovtech.solutions/v1/customer

Request

Header Params
Content-Type
string 
required
Example:
application/json
x-access-token
string 
required
Example:
{token}
Body Params application/json
name
string 
required
cnpj
string 
required
email
string 
required
address
object 
required
street
string 
required
city
string 
required
state
string 
required
postalCode
string 
required
complement
string 
required
addressNumber
integer 
required
neighborhood
string 
required
phone
string 
required
status
string 
required
website
string 
optional
Example
{
  "name": "Maria Silva",
  "cnpj": "99.888.777/0001-54",
  "email": "maria.silva@email.com",
  "address": {
    "street": "Av. Paulista",
    "city": "São Paulo",
    "state": "SP",
    "postalCode": "12345-678",
    "complement": "Andar 101",
    "addressNumber": 123,
    "neighborhood": "Centro"
  },
  "phone": "11954526395",
  "status": "Ativo",
  "website": "https://www.maria.com"
}

Responses

🟢200Success
application/json
Body
object {0}
Example
{}
Modified at 2025-04-04 15:46:38
Previous
change-customer
Next
find-customer-by-id