Skip to content

Seqino PDP API (1.0.0)

Seqino PDP API - Modern interface to France's e-Invoicing services

Download OpenAPI description
Languages
Servers
Current server

https://pdp-api-v250704-iron.seqino.dev/

Local development server

http://localhost:8052/

Production server

https://pdp.seqino.com/api/

👥 Clients

Operations

📋 Mandates

Operations

📝 Drafts

Operations

📘 Directory

Operations

🧾 Invoicing

Operations

🔄 Lifecycle

Operations

📊 Reporting

Operations

📊 Usage

Operations

⚙️ Settings

Operations

📅 Set periodicity and VAT regime settings

Request

Set the VAT regime and periodicity settings for the company.

VAT regime affects data transmission periodicity:

  • real_normal_monthly: Régime réel normal mensuel
  • real_normal_quarterly: Régime réel normal trimestriel
  • simplified: Régime simplifié d'imposition
  • franchise: Franchise en base de TVA
Headers
X-PDP-Client-Idstring(X-Pdp-Client-Id)required

ID of the PDP Client for which the operation is performed

Examples:
sandbox-client-seqino
Bodyapplication/jsonrequired
vat_regimestring(VATRegime)required

VAT regime of the company. Affects data transmission periodicity.

Enum"real_normal_monthly""real_normal_quarterly""simplified""franchise"
transaction_periodicitystring(TransactionPeriodicity)required

Frequency for transaction data (Flux 4)

Enum"monthly""decade"
payment_periodicitystring(PaymentPeriodicity)required

Frequency for payment data (Flux 10)

Enum"monthly""bimonthly"
curl -i -X PUT \
  https://pdp-api-v250704-iron.seqino.dev/api/settings/periodicity \
  -H 'Content-Type: application/json' \
  -H 'X-PDP-Client-Id: string' \
  -d '{
    "vat_regime": "real_normal_monthly",
    "transaction_periodicity": "monthly",
    "payment_periodicity": "monthly"
  }'

Responses

Periodicity settings saved successfully

Bodyapplication/json
any
Response
application/json
null

📅 Get periodicity and VAT regime settings

Request

Get the current periodicity and VAT regime settings.

Headers
X-PDP-Client-Idstring(X-Pdp-Client-Id)required

ID of the PDP Client for which the operation is performed

Examples:
sandbox-client-seqino
curl -i -X GET \
  https://pdp-api-v250704-iron.seqino.dev/api/settings/periodicity \
  -H 'X-PDP-Client-Id: string'

Responses

Successful Response

Bodyapplication/json
vat_regimestring(VATRegime)required

VAT regime of the company. Affects data transmission periodicity.

Enum"real_normal_monthly""real_normal_quarterly""simplified""franchise"
transaction_periodicitystring(TransactionPeriodicity)required

Frequency for transaction data (Flux 4)

Enum"monthly""decade"
payment_periodicitystring(PaymentPeriodicity)required

Frequency for payment data (Flux 10)

Enum"monthly""bimonthly"
Response
application/json
{ "vat_regime": "real_normal_monthly", "transaction_periodicity": "monthly", "payment_periodicity": "monthly" }

Health Check

Request

Health check endpoint.

curl -i -X GET \
  https://pdp-api-v250704-iron.seqino.dev/health

Responses

Successful Response

Bodyapplication/json
any
Response
application/json
null