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
Dev server for Beta Testers

https://pdp.seqino.dev/api/

Operations

📘 Directory

Directory operations

Operations

📝 Drafts

Create and validate invoice drafts

Operations

🧾 Invoicing

Send and receive electronic invoices

Operations

🔄 Lifecycle

Polls or subscribes to lifecycle events

Operations

📋 Mandates

Manage legal entities and PPF directory entries

Operations

🚀 Company Onboarding

Manage onboarding

📊 Reporting

Send e-reporting information

Operations

⚙️ Settings

Configure client preferences

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
Security
APIKeyHeader
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
Enum"real_normal_monthly""real_normal_quarterly""simplified""franchise"
transaction_periodicitystring(TransactionPeriodicity)required
Enum"monthly""decade"
payment_periodicitystring(PaymentPeriodicity)required
Enum"monthly""bimonthly"
curl -i -X PUT \
  https://pdp.seqino.dev/api/settings/periodicity \
  -H 'Authorization: YOUR_API_KEY_HERE' \
  -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.

Security
APIKeyHeader
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.seqino.dev/api/settings/periodicity \
  -H 'Authorization: YOUR_API_KEY_HERE' \
  -H 'X-PDP-Client-Id: string'

Responses

Successful Response

Bodyapplication/json
vat_regimestring(VATRegime)required
Enum"real_normal_monthly""real_normal_quarterly""simplified""franchise"
transaction_periodicitystring(TransactionPeriodicity)required
Enum"monthly""decade"
payment_periodicitystring(PaymentPeriodicity)required
Enum"monthly""bimonthly"
Response
application/json
{ "vat_regime": "real_normal_monthly", "transaction_periodicity": "monthly", "payment_periodicity": "monthly" }

📊 Usage

Gather API usage per client and invoice

Operations

Request

Health check endpoint.

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

Responses

Successful Response

Bodyapplication/json
any
Response
application/json
null