List business activities (Service Provider API)
Returns the list of business activity categories and their activities. This endpoint is equivalent to /static/activities but filters out disabled categories and activities.
Use this endpoint to:
- Get valid activity categories and activities for business registration
- Display activity options in your application
- Validate activity information before creating businesses
Activity Information:
- Only enabled categories and activities are returned
- Activities are grouped by category
- Supports language selection via
Accept-Languageheader (defaults to French) - Categories and activities are sorted alphabetically
Language Support:
- Send
Accept-Language: enfor English - Send
Accept-Language: frfor French (default)
Authentication: Requires API key headers. The authenticated business must be a service provider.
Authorization
ApiKey ApiKeyId In: header
In: header
Header Parameters
Language code for activity names (fr or en). Defaults to fr if not provided.
"fr"Value in
- "fr"
- "en"
Response Body
application/json
application/json
application/json
application/json
curl -X GET "https://example.com/partner_api/service_providers/activities"[ { "id": "string", "name": "string", "activities": [ { "id": "string", "name": "string" } ] }]List supported banks (Partner API) GET
Previous Page
Create API key for merchant business (Service Provider API) POST
Creates an API key for a merchant business that the service provider has onboarded. This allows the merchant to access the Partner API. **Prerequisites:** - The service provider must have onboarded the merchant business (via `/business_onboarding`) - The service provider must have permission to create API keys for the merchant **Use Cases:** - Generate API credentials for merchants after onboarding - Allow merchants to integrate with Jeko's Partner API - Manage API access for merchant businesses **Important Notes:** - The authenticated business must be a service provider - The merchant business must exist and be linked to the service provider - The API key is returned only once during creation - store it securely - The API key is associated with the service provider member that created it **Authentication:** Requires API key headers. The authenticated business must be a service provider.