provider issues DELETE
/repositories/{repository_id}/issues/{issue_number}/issue-field-values/{issue_field_id} @utdk/github
/repositories/{repository_id}/issues/{issue_number}/issue-field-values/{issue_field_id} Delete an issue field value from an issue
Remove a specific custom field value from an issue.
Only users with push access to the repository can delete issue field values. If you don't have the proper permissions, you'll receive a `403 Forbidden` response.
If the specified field does not have a value set on the issue, this operation will return a `404` error.
This endpoint triggers [notifications](https://docs.github.com/github/managing-subscriptions-and-notifications-on-github/about-notifications). Creating content too quickly using this endpoint may result in secondary rate limiting. For more information, see "[Rate limits for the API](https://docs.github.com/rest/using-the-rest-api/rate-limits-for-the-rest-api#about-secondary-rate-limits)"
and "[Best practices for using the REST API](https://docs.github.com/rest/guides/best-practices-for-using-the-rest-api)."
- repository_id path required
- The unique identifier of the repository.
- integer
- issue_number path required
- The number that identifies the issue.
- integer
- issue_field_id path required
- The unique identifier of the issue field.
- integer
Try it
Authentication
Configure credentials for GitHub v3 REST API
Gateway
The gateway proxies requests and injects credentials server-side. Configure credentials above, then enter your gateway URL.
Saved automatically to browser storage.
Code snippet
Updates live as you fill in the form above.
TypeScript
import github from '@utdk/github';
await github.issues.deleteIssueFieldValue()