Skip to main content
GET
/
v1
/
customers
/
{id}
Error
A valid request URL is required to generate request examples
{
  "id": "a3f1d7d0-ef1d-4b2e-aad2-123456789abc",
  "type": "individual",
  "email": "john.doe@example.com",
  "phone": "+33612345678",
  "name": "John Doe",
  "companyName": "Doe Industries",
  "siren": "732829320",
  "tvaNumber": "FR12732829320",
  "address": "10 Rue de Paris, 75001 Paris, France"
}

Documentation Index

Fetch the complete documentation index at: https://docs.boseat.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

OAuth2 authentication for Boseat API

Path Parameters

id
string
required

Unique identifier (UUID) of the customer

Example:

"a3f1d7d0-ef1d-4b2e-aad2-123456789abc"

Response

Customer retrieved successfully with all details

id
string<uuid>
required

Unique customer identifier (UUID)

Example:

"a3f1d7d0-ef1d-4b2e-aad2-123456789abc"

type
enum<string>
required

Specifies whether the customer is an individual or a company

Available options:
individual,
company
Example:

"individual"

email
string
required

Email address of the customer

Example:

"john.doe@example.com"

phone
string
required

Phone number of the customer

Example:

"+33612345678"

name
string

Full name of the customer (if individual)

Example:

"John Doe"

companyName
string

Company name (if customer is a company)

Example:

"Doe Industries"

siren
string

SIREN number of the company

Example:

"732829320"

tvaNumber
string

VAT number of the company

Example:

"FR12732829320"

address
string

Billing address of the customer

Example:

"10 Rue de Paris, 75001 Paris, France"