# credentials_orgs_users_issuers_authority_create API View for managing issuer authorities (signatories). This endpoint allows creating authorities/signatories that can be associated with issuers or specific credentials. Path Parameters: org (str): The organization/tenant identifier user_id (str): The user ID making the request Methods: POST: Create a new issuer authority POST Request Body: A JSON object containing authority details: - name (str, required): Name of the signatory - title (str, required): Title of the signatory - signature (str, required): URL to the signature image - org (str, optional): Organization identifier to associate with an issuer - entityId (str, optional): Issuer entity ID to associate with - credential (str, optional): Credential entity ID to associate with Returns: POST: A JSON response containing the created authority: { "data": { "name": "John Smith", "title": "President", "signature": "https://example.com/signatures/john-smith.png" } } 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 issuer or credential doesn't exist 500 Internal Server Error: If an unexpected error occurs Access Control: - Requires IsAdminUserOrStudentDRFMixin - Only authenticated users with appropriate permissions can manage authorities Endpoint: POST /api/credentials/orgs/{org}/users/{user_id}/issuers/authority/ Version: 3.59.0-ai-plus Security: PlatformApiKeyAuthentication ## Path parameters: - `org` (string, required) - `user_id` (string, required) ## Request fields (application/json): - `name` (string, required) - `title` (string, required) - `signature` (string, required) ## Response 200 fields (application/json): - `name` (string, required) - `title` (string, required) - `signature` (string, required)