# credentials_orgs_users_issuers_retrieve API View for managing credential issuers. This endpoint allows creating and retrieving issuers for a specific organization/tenant, with support for filtering and pagination. Path Parameters: org (str): The organization/tenant identifier user_id (str): The user ID making the request Query Parameters: q (str, optional): Search term to filter issuers by name limit (int, optional): Number of results per page (default: 50) offset (int, optional): Starting position for pagination Methods: GET: Retrieve issuers with filtering and pagination POST: Create a new issuer POST Request Body: A JSON object containing issuer details: - name (str): Issuer name - iconImage (str, optional): URL to issuer icon - email (str, optional): Contact email for the issuer - url (str, optional): Website URL for the issuer - allowed_template_tags (array, optional): List of allowed template tags Returns: GET: A JSON response containing: { "status": {"success": true, "description": "Ok"}, "result": { "next": "URL to next page", "previous": "URL to previous page", "count": 10, "data": [ {issuer object}, {issuer object}, ... ], "num_pages": 1, "page_number": 1, "max_page_size": 1000 } } POST: A JSON response containing: { "status": {"success": true, "description": "Created"}, "result": {issuer object} } Error Responses: 400 Bad Request: If the request data is invalid 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 platform doesn't exist 500 Internal Server Error: If an unexpected error occurs Access Control: - Requires IsAdminUserOrStudentDRFMixin - Only authenticated users with appropriate permissions can manage issuers Endpoint: GET /api/credentials/orgs/{org}/users/{user_id}/issuers/ Version: 3.59.0-ai-plus Security: PlatformApiKeyAuthentication ## Path parameters: - `org` (string, required) - `user_id` (string, required) ## Query parameters: - `q` (string, required) ## Response 200 fields (application/json): - `name` (string, required) - `org` (string, required) - `entityId` (string, required) - `signatories` (object, required) - `url` (string, required) - `iconImage` (string, required) - `allowed_template_tags` (any,null)