Documentação
InícioTokenOne
Outras documentações
  • Branding
  • Investidor
InícioTokenOne
Outras documentações
  • Branding
  • Investidor
  1. Customers
  • Introdução
    • Introdução
  • TokenOne APIs
    • Customers
      • createCustomer
        POST
      • listCustomers
        GET
      • getCustomer
        GET
      • uploadCustomerDocument
        POST
      • getCustomerVerification
        GET
      • startCustomerVerification
        POST
    • Transactions
      • listTransactions
      • getTransaction
      • createOnRamp
      • createOffRamp
      • createTransfer
    • Offers
      • listOffers
      • createOffer
      • getOffer
      • buyOffer
    • Tokens
      • listTokens
      • createToken
      • getToken
    • Issuers
      • listIssuers
      • createIssuer
      • getIssuer
      • updateIssuer
    • Distributors
      • listDistributors
      • createDistributor
      • getDistributor
      • updateDistributor
    • Esquemas
      • Schemas
        • Error
        • PageMeta
        • CustomerType
        • VerificationStatus
        • Customer
        • CustomerCreate
        • CustomersPage
        • DocumentUploadResponse
        • Verification
        • FiatTxType
        • FiatTxStatus
        • Transaction
        • TransactionsPage
        • OnRampCreate
        • OffRampCreate
        • TransferCreate
        • OfferStatus
        • Offer
        • OffersPage
        • OfferCreate
        • OfferBuyRequest
        • TokenStandard
        • Token
        • TokensPage
        • TokenCreate
        • Issuer
        • IssuersPage
        • IssuerCreate
        • IssuerUpdate
        • Distributor
        • DistributorsPage
        • DistributorCreate
        • DistributorUpdate
  1. Customers

createCustomer

Servidor de Produção
Servidor de Produção
POST
/customers
Responsável:Não configurado

Requisição

Parâmetros Bodyapplication/jsonNecessário

Examples

Respostas

🟢201Criado
application/json
Body

🟠400Solicitação Incorreta
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/customers' \
--header 'Content-Type: application/json' \
--data-raw '{
    "type": "INDIVIDUAL",
    "country": "BR",
    "email": "ana.silva@example.com",
    "tax_id": "12345678901",
    "name": "Ana Silva"
}'
Response Response Example
201 - example
{
    "id": "7f2a1b2c-1111-2222-3333-aaaaaaaaaaaa",
    "type": "INDIVIDUAL",
    "country": "BR",
    "email": "ana.silva@example.com",
    "tax_id": "12345678901",
    "name": "Ana Silva",
    "verification": {
        "status": "PENDING",
        "level": "basic",
        "updated_at": "2025-09-17T19:00:00Z"
    },
    "created_at": "2025-09-17T19:00:00Z"
}
Modificado em 2025-09-18 00:15:00
Página anterior
Introdução
Próxima página
listCustomers
Built with