Seqino PDP API - Modern interface to France's e-Invoicing services
- 📅 Get periodicity and VAT regime settings
📅 Set periodicity and VAT regime settings
📅 Get periodicity and VA...
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
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 mensuelreal_normal_quarterly: Régime réel normal trimestrielsimplified: Régime simplifié d'impositionfranchise: Franchise en base de TVA
Security
APIKeyHeader
VAT regime of the company. Affects data transmission periodicity.
Enum"real_normal_monthly""real_normal_quarterly""simplified""franchise"
Frequency for transaction data (Flux 4)
Enum"monthly""decade"
- 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 '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"
}'- 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 'Authorization: YOUR_API_KEY_HERE' \
-H 'X-PDP-Client-Id: string'Response
application/json
{ "vat_regime": "real_normal_monthly", "transaction_periodicity": "monthly", "payment_periodicity": "monthly" }