# credentials_orgs_users_assertions_bulk_create Endpoint to issue credential assertions in bulk for a specific credential. This endpoint allows issuing credential assertions to multiple users at once. Path Parameters: org (str): The organization/tenant identifier user_id (str): The user ID making the request entity_id (str): The credential entity ID POST Request Body: A JSON object containing: - users (list): List of usernames to issue the credential to - Additional metadata required for issuing the credential Returns: A JSON response containing: { "skipped": ["username1", "username3"], // Users that were skipped (e.g., already have the credential) "issued": ["username2", "username4"] // Users that were successfully issued the credential } Error Responses: 400 Bad Request: If the request data is invalid or missing required fields 401 Unauthorized: If the user is not authenticated 403 Forbidden: If the user does not have permission to access this resource 404 Not Found: If the credential doesn't exist 500 Internal Server Error: If an unexpected error occurs Endpoint: POST /api/credentials/orgs/{org}/users/{user_id}/{entity_id}/assertions/bulk/ Version: 3.59.0-ai-plus Security: PlatformApiKeyAuthentication ## Path parameters: - `entity_id` (string, required) - `org` (string, required) - `user_id` (string, required) ## Request fields (application/json): - `skipped` (array, required) - `issued` (array, required) ## Response 200 fields (application/json): - `skipped` (array, required) - `issued` (array, required)