Seqino PDP API - Modern interface to France's e-Invoicing services
Seqino PDP API (1.0.0)
Download OpenAPI description
Overview
Languages
Servers
Dev server
https://pdp.seqino.dev/api/
Local development server
http://localhost:8052/
Bodyapplication/jsonrequired
 Enum"real_normal_monthly""real_normal_quarterly""simplified""franchise"
- Dev serverhttps://pdp.seqino.dev/api/settings/periodicity 
- Local development serverhttp://localhost:8052/settings/periodicity 
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
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"
  }'- Dev serverhttps://pdp.seqino.dev/api/settings/periodicity 
- Local development serverhttp://localhost:8052/settings/periodicity 
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
  https://pdp.seqino.dev/api/settings/periodicity \
  -H 'X-PDP-Client-Id: string'Response
application/json
{ "vat_regime": "real_normal_monthly", "transaction_periodicity": "monthly", "payment_periodicity": "monthly" }