# catalog_licenses_program_assignment_retrieve Retrieve a paginated list of program license assignments Endpoint: GET /api/catalog/licenses/program/assignment/ Version: 3.59.0-ai-plus Security: PlatformApiKeyAuthentication ## Query parameters: - `active` (boolean) Filter by the active status of assignments - `email` (string) Filter assignments for a specific email - `fulfilled` (boolean) Filter by the fulfilled status of assignments - `license_id` (integer, required) The ID of the program license - `page` (integer) Page number for pagination - `page_size` (integer) Number of results per page - `platform_key` (string) The unique identifier for the platform - `platform_org` (string) The organization identifier for the platform - `sort` (string) Field to sort results by (e.g., 'id', '-id', 'created', '-created') - `user_id` (integer) Filter assignments for a specific user ID ## Response 200 fields (application/json): - `count` (integer, required) Total number of results - `next_page` (string,null, required) URL for next page of results - `previous_page` (string,null, required) URL for previous page of results - `results` (array, required) List of program license assignments - `results.id` (integer, required) The unique identifier for the assignment - `results.user_id` (integer,null, required) The ID of the user assigned the license - `results.username` (string,null, required) The username of the user assigned the license - `results.name` (string,null, required) The full name of the user assigned the license - `results.email` (string,null, required) The email address of the user assigned the license - `results.active` (boolean, required) Whether the assignment is active and valid - `results.fulfilled` (boolean, required) Whether the assignment has been processed/fulfilled - `results.direct` (boolean) Whether the assignment was directly assigned to the user (vs. via a group) - `results.redirect_to` (string) URL to redirect to after fulfillment - `results.metadata` (object,null, required) Additional metadata for the assignment - `results.created` (string) When the assignment was created - `results.modified` (string) When the assignment was last modified - `results.license_id` (integer, required) The ID of the program license - `results.license_name` (string, required) The name of the program license - `results.program_key` (string, required) The program key associated with the license