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
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 '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.seqino.dev/api/settings/periodicity \
  -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" }