Shal
Shal is a data provider that retrieves legal announcements published in journals authorized to issue legal advertisements (JAL). You can use this provider to collect legal notices for your users' companies.
This provider supports these data types:
- Legal Notice: to retrieve a list of legal notice publications.
Test Shal integration:
1. Enable Shal provider:
PUT /api/v6/providers/shal
{
"enable": true
}
2. Settings Shal provider:
PUT /api/v6/providers/shal/settings
{
"auto_connect": true
}
3. Create Shal data connection:
POST /api/v6/users/{userId}/data-connections
{
"requested_data_types": ["LEGAL_NOTICE"],
"provider_name": "shal"
}
4. Create a synchronization:
After validating that the data connection status is CONNECTED, you can run a new synchronization.
POST /api/v6/users/{userId}/sync
{
"data_types": ["LEGAL_NOTICE"]
}
To verify that you are receiving legal notices, check out this endpoint:
| Method | Endpoint | Description |
|---|---|---|
| GET | /api/v6/users/{userId}/legal-notices | Legal notices from Shal |