=encoding utf8 =head1 NAME OpenAPI::Client::OpenAI::Path::responses-response_id-input_items - Documentation for the /responses/{response_id}/input_items path. =head1 DESCRIPTION This document describes the API endpoint at C. =head1 PATHS =head2 C Returns a list of input items for a given response. =head3 Operation ID C $client->listInputItems( ... ); =head3 Parameters =over 4 =item * C (in path) (Required) - The ID of the response to retrieve input items for. Type: C =item * C (in query) (Optional) - A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 20. Type: C Default: C<20> =item * C (in query) (Optional) - The order to return the input items in. Default is `asc`. - `asc`: Return the input items in ascending order. - `desc`: Return the input items in descending order. Type: C Allowed values: C =item * C (in query) (Optional) - An item ID to list items after, used in pagination. Type: C =item * C (in query) (Optional) - An item ID to list items before, used in pagination. Type: C =back =head3 Responses =head4 Status Code: C<200> OK =head4 Content Types: =over 4 =item * C Example (See the L): { "object": "list", "data": [ { "id": "msg_abc123", "type": "message", "role": "user", "content": [ { "type": "input_text", "text": "Tell me a three sentence bedtime story about a unicorn." } ] } ], "first_id": "msg_abc123", "last_id": "msg_abc123", "has_more": false } =back =head1 SEE ALSO L =head1 COPYRIGHT AND LICENSE Copyright (C) 2023-2025 by Nelson Ferraz This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.14.0 or, at your option, any later version of Perl 5 you may have available. =cut