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
https://pdp.seqino.dev/api
Local development server
http://localhost:8052
Operations
Operations
Operations
Operations
Operations
Operations
Operations
Operations
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:
client_abc123
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.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:
client_abc123
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

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" }
Operations

Request

Health check endpoint.

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

Responses

Successful Response

Bodyapplication/json
any
Response
application/json
null