PEPPOL Providers
Use client.peppol to inspect PEPPOL providers. This is a public root-client
branch and does not require an authenticated client.
Query providers
Section titled “Query providers”page = client.peppol.query()
for provider in page.providers: print(provider.id, provider.name)for provider in client.peppol.all(): print(provider.id, provider.name, provider.date_created)Recommended flow
Section titled “Recommended flow”-
Query providers from the root client.
-
Cache provider ids and names for user selection or validation.
-
Refresh the cache according to your product’s data freshness needs.