...
Overview
REST API Access
Common
The following code examples are written in C#.
Authentication
The authentication is based on Jira's REST API authentication, so you can use HTTP basic authentication using your user credentials.
Code Block | ||
---|---|---|
| ||
// initialize a HttpClient with the Jira base url, e.g.
using HttpClient client = new() { BaseAddress = new Uri(Config.JiraBaseUrl) }; |