{"meta":{"title":"Puntos de conexión de la API de REST para comentarios de incidencias","intro":"Usa la API REST para administrar comentarios sobre problemas y solicitudes de incorporación de cambios.","product":"REST API","breadcrumbs":[{"href":"/es/rest","title":"REST API"},{"href":"/es/rest/issues","title":"Incidencias"},{"href":"/es/rest/issues/comments","title":"Comentarios"}],"documentType":"article"},"body":"# Puntos de conexión de la API de REST para comentarios de incidencias\n\nUsa la API REST para administrar comentarios sobre problemas y solicitudes de incorporación de cambios.\n\n## Acerca de los comentarios de incidencias y las solicitudes de incorporación de cambios\n\nPuedes usar la API REST para crear y administrar comentarios sobre problemas y solicitudes de incorporación de cambios. Cada solicitud de extracción es un informe de problemas, pero no todos los informes de problemas son una solicitud de extracción. Es por esto que las acciones \"compartidas\" para ambas características, como la administración de los asignados, las etiquetas y los hitos, se proporcionan dentro de los puntos de conexión de incidencias. Para administrar comentarios sobre revisiones de solicitudes de incorporación de cambios, consulte [Puntos de conexión de la API de REST para comentarios de revisión de solicitudes de incorporación de cambios](/es/rest/pulls/comments).\n\n> \\[!NOTE]\n> Most endpoints use `Authorization: Bearer <YOUR-TOKEN>` and `Accept: application/vnd.github+json` headers, plus `X-GitHub-Api-Version: 2026-03-10`. Curl examples below omit these standard headers for brevity.\n\n## List issue comments for a repository\n\n```\nGET /repos/{owner}/{repo}/issues/comments\n```\n\nYou can use the REST API to list comments on issues and pull requests for a repository. Every pull request is an issue, but not every issue is a pull request.\nBy default, issue comments are ordered by ascending ID.\nThis endpoint supports the following custom media types. For more information, see \"Media types.\"\n\napplication/vnd.github.raw+json: Returns the raw markdown body. Response will include body. This is the default if you do not pass any specific media type.\napplication/vnd.github.text+json: Returns a text only representation of the markdown body. Response will include body\\_text.\napplication/vnd.github.html+json: Returns HTML rendered from the body's markdown. Response will include body\\_html.\napplication/vnd.github.full+json: Returns raw, text, and HTML representations. Response will include body, body\\_text, and body\\_html.\n\n### Parameters\n\n#### Headers\n\n* **`accept`** (string)\n  Setting to `application/vnd.github+json` is recommended.\n\n#### Path and query parameters\n\n* **`owner`** (string) (required)\n  The account owner of the repository. The name is not case sensitive.\n\n* **`repo`** (string) (required)\n  The name of the repository without the .git extension. The name is not case sensitive.\n\n* **`sort`** (string)\n  The property to sort the results by.\n  Default: `created`\n  Can be one of: `created`, `updated`\n\n* **`direction`** (string)\n  Either asc or desc. Ignored without the sort parameter.\n  Can be one of: `asc`, `desc`\n\n* **`since`** (string)\n  Only show results that were last updated after the given time. This is a timestamp in ISO 8601 format: YYYY-MM-DDTHH:MM:SSZ.\n\n* **`per_page`** (integer)\n  The number of results per page (max 100). For more information, see \"Using pagination in the REST API.\"\n  Default: `30`\n\n* **`page`** (integer)\n  The page number of the results to fetch. For more information, see \"Using pagination in the REST API.\"\n  Default: `1`\n\n### HTTP response status codes\n\n* **200** - OK\n\n* **404** - Resource not found\n\n* **422** - Validation failed, or the endpoint has been spammed.\n\n### Code examples\n\n#### Example\n\n**Request:**\n\n```curl\ncurl -L \\\n  -X GET \\\n  https://api.github.com/repos/OWNER/REPO/issues/comments\n```\n\n**Response schema (Status: 200):**\n\nArray of `Issue Comment`:\n\n* `id`: required, integer, format: int64\n* `node_id`: required, string\n* `url`: required, string, format: uri\n* `body`: string\n* `body_text`: string\n* `body_html`: string\n* `html_url`: required, string, format: uri\n* `user`: required, any of:\n  * **null**\n  * **Simple User**\n    * `name`: string or null\n    * `email`: string or null\n    * `login`: required, string\n    * `id`: required, integer, format: int64\n    * `node_id`: required, string\n    * `avatar_url`: required, string, format: uri\n    * `gravatar_id`: required, string or null\n    * `url`: required, string, format: uri\n    * `html_url`: required, string, format: uri\n    * `followers_url`: required, string, format: uri\n    * `following_url`: required, string\n    * `gists_url`: required, string\n    * `starred_url`: required, string\n    * `subscriptions_url`: required, string, format: uri\n    * `organizations_url`: required, string, format: uri\n    * `repos_url`: required, string, format: uri\n    * `events_url`: required, string\n    * `received_events_url`: required, string, format: uri\n    * `type`: required, string\n    * `site_admin`: required, boolean\n    * `starred_at`: string\n    * `user_view_type`: string\n* `created_at`: required, string, format: date-time\n* `updated_at`: required, string, format: date-time\n* `issue_url`: required, string, format: uri\n* `author_association`: string, enum: `COLLABORATOR`, `CONTRIBUTOR`, `FIRST_TIMER`, `FIRST_TIME_CONTRIBUTOR`, `MANNEQUIN`, `MEMBER`, `NONE`, `OWNER`\n* `performed_via_github_app`: any of:\n  * **null**\n  * **GitHub app**\n    * `id`: required, integer\n    * `slug`: string\n    * `node_id`: required, string\n    * `client_id`: string\n    * `owner`: required, one of:\n      * **Simple User**\n        * `name`: string or null\n        * `email`: string or null\n        * `login`: required, string\n        * `id`: required, integer, format: int64\n        * `node_id`: required, string\n        * `avatar_url`: required, string, format: uri\n        * `gravatar_id`: required, string or null\n        * `url`: required, string, format: uri\n        * `html_url`: required, string, format: uri\n        * `followers_url`: required, string, format: uri\n        * `following_url`: required, string\n        * `gists_url`: required, string\n        * `starred_url`: required, string\n        * `subscriptions_url`: required, string, format: uri\n        * `organizations_url`: required, string, format: uri\n        * `repos_url`: required, string, format: uri\n        * `events_url`: required, string\n        * `received_events_url`: required, string, format: uri\n        * `type`: required, string\n        * `site_admin`: required, boolean\n        * `starred_at`: string\n        * `user_view_type`: string\n      * **Enterprise**\n        * `description`: string or null\n        * `html_url`: required, string, format: uri\n        * `website_url`: string or null, format: uri\n        * `id`: required, integer\n        * `node_id`: required, string\n        * `name`: required, string\n        * `slug`: required, string\n        * `created_at`: required, string or null, format: date-time\n        * `updated_at`: required, string or null, format: date-time\n        * `avatar_url`: required, string, format: uri\n    * `name`: required, string\n    * `description`: required, string or null\n    * `external_url`: required, string, format: uri\n    * `html_url`: required, string, format: uri\n    * `created_at`: required, string, format: date-time\n    * `updated_at`: required, string, format: date-time\n    * `permissions`: required, object, additional properties: string:\n      * `issues`: string\n      * `checks`: string\n      * `metadata`: string\n      * `contents`: string\n      * `deployments`: string\n    * `events`: required, array of string\n    * `installations_count`: integer\n* `reactions`: `Reaction Rollup`:\n  * `url`: required, string, format: uri\n  * `total_count`: required, integer\n  * `+1`: required, integer\n  * `-1`: required, integer\n  * `laugh`: required, integer\n  * `confused`: required, integer\n  * `heart`: required, integer\n  * `hooray`: required, integer\n  * `eyes`: required, integer\n  * `rocket`: required, integer\n* `pin`: any of:\n  * **null**\n  * **Pinned Issue Comment**\n    * `pinned_at`: required, string, format: date-time\n    * `pinned_by`: required, any of:\n      * **null**\n      * **Simple User**\n        * `name`: string or null\n        * `email`: string or null\n        * `login`: required, string\n        * `id`: required, integer, format: int64\n        * `node_id`: required, string\n        * `avatar_url`: required, string, format: uri\n        * `gravatar_id`: required, string or null\n        * `url`: required, string, format: uri\n        * `html_url`: required, string, format: uri\n        * `followers_url`: required, string, format: uri\n        * `following_url`: required, string\n        * `gists_url`: required, string\n        * `starred_url`: required, string\n        * `subscriptions_url`: required, string, format: uri\n        * `organizations_url`: required, string, format: uri\n        * `repos_url`: required, string, format: uri\n        * `events_url`: required, string\n        * `received_events_url`: required, string, format: uri\n        * `type`: required, string\n        * `site_admin`: required, boolean\n        * `starred_at`: string\n        * `user_view_type`: string\n\n## Get an issue comment\n\n```\nGET /repos/{owner}/{repo}/issues/comments/{comment_id}\n```\n\nYou can use the REST API to get comments on issues and pull requests. Every pull request is an issue, but not every issue is a pull request.\nThis endpoint supports the following custom media types. For more information, see \"Media types.\"\n\napplication/vnd.github.raw+json: Returns the raw markdown body. Response will include body. This is the default if you do not pass any specific media type.\napplication/vnd.github.text+json: Returns a text only representation of the markdown body. Response will include body\\_text.\napplication/vnd.github.html+json: Returns HTML rendered from the body's markdown. Response will include body\\_html.\napplication/vnd.github.full+json: Returns raw, text, and HTML representations. Response will include body, body\\_text, and body\\_html.\n\n### Parameters\n\n#### Headers\n\n* **`accept`** (string)\n  Setting to `application/vnd.github+json` is recommended.\n\n#### Path and query parameters\n\n* **`owner`** (string) (required)\n  The account owner of the repository. The name is not case sensitive.\n\n* **`repo`** (string) (required)\n  The name of the repository without the .git extension. The name is not case sensitive.\n\n* **`comment_id`** (integer) (required)\n  The unique identifier of the comment.\n\n### HTTP response status codes\n\n* **200** - OK\n\n* **404** - Resource not found\n\n### Code examples\n\n#### Example\n\n**Request:**\n\n```curl\ncurl -L \\\n  -X GET \\\n  https://api.github.com/repos/OWNER/REPO/issues/comments/COMMENT_ID\n```\n\n**Response schema (Status: 200):**\n\n* `id`: required, integer, format: int64\n* `node_id`: required, string\n* `url`: required, string, format: uri\n* `body`: string\n* `body_text`: string\n* `body_html`: string\n* `html_url`: required, string, format: uri\n* `user`: required, any of:\n  * **null**\n  * **Simple User**\n    * `name`: string or null\n    * `email`: string or null\n    * `login`: required, string\n    * `id`: required, integer, format: int64\n    * `node_id`: required, string\n    * `avatar_url`: required, string, format: uri\n    * `gravatar_id`: required, string or null\n    * `url`: required, string, format: uri\n    * `html_url`: required, string, format: uri\n    * `followers_url`: required, string, format: uri\n    * `following_url`: required, string\n    * `gists_url`: required, string\n    * `starred_url`: required, string\n    * `subscriptions_url`: required, string, format: uri\n    * `organizations_url`: required, string, format: uri\n    * `repos_url`: required, string, format: uri\n    * `events_url`: required, string\n    * `received_events_url`: required, string, format: uri\n    * `type`: required, string\n    * `site_admin`: required, boolean\n    * `starred_at`: string\n    * `user_view_type`: string\n* `created_at`: required, string, format: date-time\n* `updated_at`: required, string, format: date-time\n* `issue_url`: required, string, format: uri\n* `author_association`: string, enum: `COLLABORATOR`, `CONTRIBUTOR`, `FIRST_TIMER`, `FIRST_TIME_CONTRIBUTOR`, `MANNEQUIN`, `MEMBER`, `NONE`, `OWNER`\n* `performed_via_github_app`: any of:\n  * **null**\n  * **GitHub app**\n    * `id`: required, integer\n    * `slug`: string\n    * `node_id`: required, string\n    * `client_id`: string\n    * `owner`: required, one of:\n      * **Simple User**\n        * `name`: string or null\n        * `email`: string or null\n        * `login`: required, string\n        * `id`: required, integer, format: int64\n        * `node_id`: required, string\n        * `avatar_url`: required, string, format: uri\n        * `gravatar_id`: required, string or null\n        * `url`: required, string, format: uri\n        * `html_url`: required, string, format: uri\n        * `followers_url`: required, string, format: uri\n        * `following_url`: required, string\n        * `gists_url`: required, string\n        * `starred_url`: required, string\n        * `subscriptions_url`: required, string, format: uri\n        * `organizations_url`: required, string, format: uri\n        * `repos_url`: required, string, format: uri\n        * `events_url`: required, string\n        * `received_events_url`: required, string, format: uri\n        * `type`: required, string\n        * `site_admin`: required, boolean\n        * `starred_at`: string\n        * `user_view_type`: string\n      * **Enterprise**\n        * `description`: string or null\n        * `html_url`: required, string, format: uri\n        * `website_url`: string or null, format: uri\n        * `id`: required, integer\n        * `node_id`: required, string\n        * `name`: required, string\n        * `slug`: required, string\n        * `created_at`: required, string or null, format: date-time\n        * `updated_at`: required, string or null, format: date-time\n        * `avatar_url`: required, string, format: uri\n    * `name`: required, string\n    * `description`: required, string or null\n    * `external_url`: required, string, format: uri\n    * `html_url`: required, string, format: uri\n    * `created_at`: required, string, format: date-time\n    * `updated_at`: required, string, format: date-time\n    * `permissions`: required, object, additional properties: string:\n      * `issues`: string\n      * `checks`: string\n      * `metadata`: string\n      * `contents`: string\n      * `deployments`: string\n    * `events`: required, array of string\n    * `installations_count`: integer\n* `reactions`: `Reaction Rollup`:\n  * `url`: required, string, format: uri\n  * `total_count`: required, integer\n  * `+1`: required, integer\n  * `-1`: required, integer\n  * `laugh`: required, integer\n  * `confused`: required, integer\n  * `heart`: required, integer\n  * `hooray`: required, integer\n  * `eyes`: required, integer\n  * `rocket`: required, integer\n* `pin`: any of:\n  * **null**\n  * **Pinned Issue Comment**\n    * `pinned_at`: required, string, format: date-time\n    * `pinned_by`: required, any of:\n      * **null**\n      * **Simple User**\n        * `name`: string or null\n        * `email`: string or null\n        * `login`: required, string\n        * `id`: required, integer, format: int64\n        * `node_id`: required, string\n        * `avatar_url`: required, string, format: uri\n        * `gravatar_id`: required, string or null\n        * `url`: required, string, format: uri\n        * `html_url`: required, string, format: uri\n        * `followers_url`: required, string, format: uri\n        * `following_url`: required, string\n        * `gists_url`: required, string\n        * `starred_url`: required, string\n        * `subscriptions_url`: required, string, format: uri\n        * `organizations_url`: required, string, format: uri\n        * `repos_url`: required, string, format: uri\n        * `events_url`: required, string\n        * `received_events_url`: required, string, format: uri\n        * `type`: required, string\n        * `site_admin`: required, boolean\n        * `starred_at`: string\n        * `user_view_type`: string\n\n## Update an issue comment\n\n```\nPATCH /repos/{owner}/{repo}/issues/comments/{comment_id}\n```\n\nYou can use the REST API to update comments on issues and pull requests. Every pull request is an issue, but not every issue is a pull request.\nThis endpoint supports the following custom media types. For more information, see \"Media types.\"\n\napplication/vnd.github.raw+json: Returns the raw markdown body. Response will include body. This is the default if you do not pass any specific media type.\napplication/vnd.github.text+json: Returns a text only representation of the markdown body. Response will include body\\_text.\napplication/vnd.github.html+json: Returns HTML rendered from the body's markdown. Response will include body\\_html.\napplication/vnd.github.full+json: Returns raw, text, and HTML representations. Response will include body, body\\_text, and body\\_html.\n\n### Parameters\n\n#### Headers\n\n* **`accept`** (string)\n  Setting to `application/vnd.github+json` is recommended.\n\n#### Path and query parameters\n\n* **`owner`** (string) (required)\n  The account owner of the repository. The name is not case sensitive.\n\n* **`repo`** (string) (required)\n  The name of the repository without the .git extension. The name is not case sensitive.\n\n* **`comment_id`** (integer) (required)\n  The unique identifier of the comment.\n\n#### Body parameters\n\n* **`body`** (string) (required)\n  The contents of the comment.\n\n### HTTP response status codes\n\n* **200** - OK\n\n* **422** - Validation failed, or the endpoint has been spammed.\n\n### Code examples\n\n#### Example\n\n**Request:**\n\n```curl\ncurl -L \\\n  -X PATCH \\\n  https://api.github.com/repos/OWNER/REPO/issues/comments/COMMENT_ID \\\n  -d '{\n  \"body\": \"Me too\"\n}'\n```\n\n**Response schema (Status: 200):**\n\nSame response schema as [Get an issue comment](#get-an-issue-comment).\n\n## Delete an issue comment\n\n```\nDELETE /repos/{owner}/{repo}/issues/comments/{comment_id}\n```\n\nYou can use the REST API to delete comments on issues and pull requests. Every pull request is an issue, but not every issue is a pull request.\n\n### Parameters\n\n#### Headers\n\n* **`accept`** (string)\n  Setting to `application/vnd.github+json` is recommended.\n\n#### Path and query parameters\n\n* **`owner`** (string) (required)\n  The account owner of the repository. The name is not case sensitive.\n\n* **`repo`** (string) (required)\n  The name of the repository without the .git extension. The name is not case sensitive.\n\n* **`comment_id`** (integer) (required)\n  The unique identifier of the comment.\n\n### HTTP response status codes\n\n* **204** - No Content\n\n### Code examples\n\n#### Example\n\n**Request:**\n\n```curl\ncurl -L \\\n  -X DELETE \\\n  https://api.github.com/repos/OWNER/REPO/issues/comments/COMMENT_ID\n```\n\n**Response schema (Status: 204):**\n\n## Pin an issue comment\n\n```\nPUT /repos/{owner}/{repo}/issues/comments/{comment_id}/pin\n```\n\nYou can use the REST API to pin comments on issues.\nThis endpoint supports the following custom media types. For more information, see \"Media types.\"\n\napplication/vnd.github.raw+json: Returns the raw markdown body. Response will include body. This is the default if you do not pass any specific media type.\napplication/vnd.github.text+json: Returns a text only representation of the markdown body. Response will include body\\_text.\napplication/vnd.github.html+json: Returns HTML rendered from the body's markdown. Response will include body\\_html.\napplication/vnd.github.full+json: Returns raw, text, and HTML representations. Response will include body, body\\_text, and body\\_html.\n\n### Parameters\n\n#### Headers\n\n* **`accept`** (string)\n  Setting to `application/vnd.github+json` is recommended.\n\n#### Path and query parameters\n\n* **`owner`** (string) (required)\n  The account owner of the repository. The name is not case sensitive.\n\n* **`repo`** (string) (required)\n  The name of the repository without the .git extension. The name is not case sensitive.\n\n* **`comment_id`** (integer) (required)\n  The unique identifier of the comment.\n\n### HTTP response status codes\n\n* **200** - OK\n\n* **401** - Requires authentication\n\n* **403** - Forbidden\n\n* **404** - Resource not found\n\n* **410** - Gone\n\n* **422** - Validation failed, or the endpoint has been spammed.\n\n### Code examples\n\n#### Example\n\n**Request:**\n\n```curl\ncurl -L \\\n  -X PUT \\\n  https://api.github.com/repos/OWNER/REPO/issues/comments/COMMENT_ID/pin\n```\n\n**Response schema (Status: 200):**\n\nSame response schema as [Get an issue comment](#get-an-issue-comment).\n\n## Unpin an issue comment\n\n```\nDELETE /repos/{owner}/{repo}/issues/comments/{comment_id}/pin\n```\n\nYou can use the REST API to unpin comments on issues.\n\n### Parameters\n\n#### Headers\n\n* **`accept`** (string)\n  Setting to `application/vnd.github+json` is recommended.\n\n#### Path and query parameters\n\n* **`owner`** (string) (required)\n  The account owner of the repository. The name is not case sensitive.\n\n* **`repo`** (string) (required)\n  The name of the repository without the .git extension. The name is not case sensitive.\n\n* **`comment_id`** (integer) (required)\n  The unique identifier of the comment.\n\n### HTTP response status codes\n\n* **204** - No Content\n\n* **401** - Requires authentication\n\n* **403** - Forbidden\n\n* **404** - Resource not found\n\n* **410** - Gone\n\n* **503** - Service unavailable\n\n### Code examples\n\n#### Example\n\n**Request:**\n\n```curl\ncurl -L \\\n  -X DELETE \\\n  https://api.github.com/repos/OWNER/REPO/issues/comments/COMMENT_ID/pin\n```\n\n**Response schema (Status: 204):**\n\n## List issue comments\n\n```\nGET /repos/{owner}/{repo}/issues/{issue_number}/comments\n```\n\nYou can use the REST API to list comments on issues and pull requests. Every pull request is an issue, but not every issue is a pull request.\nIssue comments are ordered by ascending ID.\nThis endpoint supports the following custom media types. For more information, see \"Media types.\"\n\napplication/vnd.github.raw+json: Returns the raw markdown body. Response will include body. This is the default if you do not pass any specific media type.\napplication/vnd.github.text+json: Returns a text only representation of the markdown body. Response will include body\\_text.\napplication/vnd.github.html+json: Returns HTML rendered from the body's markdown. Response will include body\\_html.\napplication/vnd.github.full+json: Returns raw, text, and HTML representations. Response will include body, body\\_text, and body\\_html.\n\n### Parameters\n\n#### Headers\n\n* **`accept`** (string)\n  Setting to `application/vnd.github+json` is recommended.\n\n#### Path and query parameters\n\n* **`owner`** (string) (required)\n  The account owner of the repository. The name is not case sensitive.\n\n* **`repo`** (string) (required)\n  The name of the repository without the .git extension. The name is not case sensitive.\n\n* **`issue_number`** (integer) (required)\n  The number that identifies the issue.\n\n* **`since`** (string)\n  Only show results that were last updated after the given time. This is a timestamp in ISO 8601 format: YYYY-MM-DDTHH:MM:SSZ.\n\n* **`per_page`** (integer)\n  The number of results per page (max 100). For more information, see \"Using pagination in the REST API.\"\n  Default: `30`\n\n* **`page`** (integer)\n  The page number of the results to fetch. For more information, see \"Using pagination in the REST API.\"\n  Default: `1`\n\n### HTTP response status codes\n\n* **200** - OK\n\n* **404** - Resource not found\n\n* **410** - Gone\n\n### Code examples\n\n#### Example\n\n**Request:**\n\n```curl\ncurl -L \\\n  -X GET \\\n  https://api.github.com/repos/OWNER/REPO/issues/ISSUE_NUMBER/comments\n```\n\n**Response schema (Status: 200):**\n\nSame response schema as [List issue comments for a repository](#list-issue-comments-for-a-repository).\n\n## Create an issue comment\n\n```\nPOST /repos/{owner}/{repo}/issues/{issue_number}/comments\n```\n\nYou can use the REST API to create comments on issues and pull requests. Every pull request is an issue, but not every issue is a pull request.\nThis endpoint triggers notifications.\nCreating content too quickly using this endpoint may result in secondary rate limiting.\nFor more information, see \"Rate limits for the API\"\nand \"Best practices for using the REST API.\"\nThis endpoint supports the following custom media types. For more information, see \"Media types.\"\n\napplication/vnd.github.raw+json: Returns the raw markdown body. Response will include body. This is the default if you do not pass any specific media type.\napplication/vnd.github.text+json: Returns a text only representation of the markdown body. Response will include body\\_text.\napplication/vnd.github.html+json: Returns HTML rendered from the body's markdown. Response will include body\\_html.\napplication/vnd.github.full+json: Returns raw, text, and HTML representations. Response will include body, body\\_text, and body\\_html.\n\n### Parameters\n\n#### Headers\n\n* **`accept`** (string)\n  Setting to `application/vnd.github+json` is recommended.\n\n#### Path and query parameters\n\n* **`owner`** (string) (required)\n  The account owner of the repository. The name is not case sensitive.\n\n* **`repo`** (string) (required)\n  The name of the repository without the .git extension. The name is not case sensitive.\n\n* **`issue_number`** (integer) (required)\n  The number that identifies the issue.\n\n#### Body parameters\n\n* **`body`** (string) (required)\n  The contents of the comment.\n\n### HTTP response status codes\n\n* **201** - Created\n\n* **403** - Forbidden\n\n* **404** - Resource not found\n\n* **410** - Gone\n\n* **422** - Validation failed, or the endpoint has been spammed.\n\n### Code examples\n\n#### Example\n\n**Request:**\n\n```curl\ncurl -L \\\n  -X POST \\\n  https://api.github.com/repos/OWNER/REPO/issues/ISSUE_NUMBER/comments \\\n  -d '{\n  \"body\": \"Me too\"\n}'\n```\n\n**Response schema (Status: 201):**\n\nSame response schema as [Get an issue comment](#get-an-issue-comment)."}