@@ -320,6 +320,8 @@
|
||||
"/rest/codespaces#list-in-organization": "/rest/codespaces/organizations#list-in-organization",
|
||||
"/rest/codespaces#organizations": "/rest/codespaces/organizations",
|
||||
"/rest/codespaces#set-codespaces-billing": "/rest/codespaces/organizations#set-codespaces-billing",
|
||||
"/rest/codespaces#set-codespaces-billing-users": "/rest/codespaces/organizations#set-codespaces-billing-users",
|
||||
"/rest/codespaces#delete-codespaces-billing-users": "/rest/codespaces/organizations#delete-codespaces-billing-users",
|
||||
"/rest/codespaces#list-organization-secrets": "/rest/codespaces/organization-secrets#list-organization-secrets",
|
||||
"/rest/codespaces#organization-secrets": "/rest/codespaces/organization-secrets",
|
||||
"/rest/codespaces#get-an-organization-public-key": "/rest/codespaces/organization-secrets#get-an-organization-public-key",
|
||||
|
||||
@@ -30766,6 +30766,15 @@
|
||||
"schema": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "environment_name",
|
||||
"in": "path",
|
||||
"required": true,
|
||||
"description": "<p>The name of the environment.</p>",
|
||||
"schema": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
],
|
||||
"bodyParameters": [
|
||||
@@ -30796,7 +30805,8 @@
|
||||
},
|
||||
"parameters": {
|
||||
"repository_id": "REPOSITORY_ID",
|
||||
"name": "NAME"
|
||||
"name": "NAME",
|
||||
"environment_name": "ENVIRONMENT_NAME"
|
||||
}
|
||||
},
|
||||
"response": {
|
||||
@@ -30839,6 +30849,15 @@
|
||||
"schema": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "environment_name",
|
||||
"in": "path",
|
||||
"required": true,
|
||||
"description": "<p>The name of the environment.</p>",
|
||||
"schema": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
],
|
||||
"bodyParameters": [],
|
||||
@@ -30851,7 +30870,8 @@
|
||||
"acceptHeader": "application/vnd.github.v3+json",
|
||||
"parameters": {
|
||||
"repository_id": "REPOSITORY_ID",
|
||||
"name": "NAME"
|
||||
"name": "NAME",
|
||||
"environment_name": "ENVIRONMENT_NAME"
|
||||
}
|
||||
},
|
||||
"response": {
|
||||
@@ -198188,6 +198208,166 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"serverUrl": "https://api.github.com",
|
||||
"verb": "post",
|
||||
"requestPath": "/orgs/{org}/codespaces/billing/selected_users",
|
||||
"title": "Add users to Codespaces billing for an organization",
|
||||
"category": "codespaces",
|
||||
"subcategory": "organizations",
|
||||
"parameters": [
|
||||
{
|
||||
"name": "org",
|
||||
"description": "<p>The organization name. The name is not case sensitive.</p>",
|
||||
"in": "path",
|
||||
"required": true,
|
||||
"schema": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
],
|
||||
"bodyParameters": [
|
||||
{
|
||||
"type": "array of strings",
|
||||
"name": "selected_usernames",
|
||||
"in": "body",
|
||||
"description": "<p>The usernames of the organization members whose codespaces be billed to the organization.</p>",
|
||||
"isRequired": true
|
||||
}
|
||||
],
|
||||
"enabledForGitHubApps": false,
|
||||
"codeExamples": [
|
||||
{
|
||||
"key": "204",
|
||||
"request": {
|
||||
"contentType": "application/json",
|
||||
"description": "Example",
|
||||
"acceptHeader": "application/vnd.github.v3+json",
|
||||
"bodyParameters": {
|
||||
"selected_usernames": [
|
||||
"johnDoe",
|
||||
"atomIO"
|
||||
]
|
||||
},
|
||||
"parameters": {
|
||||
"org": "ORG"
|
||||
}
|
||||
},
|
||||
"response": {
|
||||
"statusCode": "204",
|
||||
"description": "<p>Response when successfully modifying permissions.</p>"
|
||||
}
|
||||
}
|
||||
],
|
||||
"previews": [],
|
||||
"descriptionHTML": "<p>Codespaces for the specified users will be billed to the organization.\nTo use this endpoint, the billing settings for the organization must be set to <code>selected_members</code>. For information on how to change this setting please see [these docs].(<a href=\"https://docs.github.com/en/rest/codespaces/organizations?apiVersion=2022-11-28#manage-access-control-for-organization-codespaces\">https://docs.github.com/en/rest/codespaces/organizations?apiVersion=2022-11-28#manage-access-control-for-organization-codespaces</a>) You must authenticate using an access token with the <code>admin:org</code> scope to use this endpoint.</p>",
|
||||
"statusCodes": [
|
||||
{
|
||||
"httpStatusCode": "204",
|
||||
"description": "<p>Response when successfully modifying permissions.</p>"
|
||||
},
|
||||
{
|
||||
"httpStatusCode": "304",
|
||||
"description": "<p>Not modified</p>"
|
||||
},
|
||||
{
|
||||
"httpStatusCode": "400",
|
||||
"description": "<p>Users are neither members nor collaborators of this organization.</p>"
|
||||
},
|
||||
{
|
||||
"httpStatusCode": "404",
|
||||
"description": "<p>Resource not found</p>"
|
||||
},
|
||||
{
|
||||
"httpStatusCode": "422",
|
||||
"description": "<p>Validation failed, or the endpoint has been spammed.</p>"
|
||||
},
|
||||
{
|
||||
"httpStatusCode": "500",
|
||||
"description": "<p>Internal Error</p>"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"serverUrl": "https://api.github.com",
|
||||
"verb": "delete",
|
||||
"requestPath": "/orgs/{org}/codespaces/billing/selected_users",
|
||||
"title": "Removes users from Codespaces billing for an organization",
|
||||
"category": "codespaces",
|
||||
"subcategory": "organizations",
|
||||
"parameters": [
|
||||
{
|
||||
"name": "org",
|
||||
"description": "<p>The organization name. The name is not case sensitive.</p>",
|
||||
"in": "path",
|
||||
"required": true,
|
||||
"schema": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
],
|
||||
"bodyParameters": [
|
||||
{
|
||||
"type": "array of strings",
|
||||
"name": "selected_usernames",
|
||||
"in": "body",
|
||||
"description": "<p>The usernames of the organization members whose codespaces should not be billed to the organization.</p>",
|
||||
"isRequired": true
|
||||
}
|
||||
],
|
||||
"enabledForGitHubApps": false,
|
||||
"codeExamples": [
|
||||
{
|
||||
"key": "204",
|
||||
"request": {
|
||||
"contentType": "application/json",
|
||||
"description": "Example",
|
||||
"acceptHeader": "application/vnd.github.v3+json",
|
||||
"bodyParameters": {
|
||||
"selected_usernames": [
|
||||
"johnDoe",
|
||||
"atomIO"
|
||||
]
|
||||
},
|
||||
"parameters": {
|
||||
"org": "ORG"
|
||||
}
|
||||
},
|
||||
"response": {
|
||||
"statusCode": "204",
|
||||
"description": "<p>Response when successfully modifying permissions.</p>"
|
||||
}
|
||||
}
|
||||
],
|
||||
"previews": [],
|
||||
"descriptionHTML": "<p>Codespaces for the specified users will no longer be billed to the organization.\nTo use this endpoint, the billing settings for the organization must be set to <code>selected_members</code>. For information on how to change this setting please see [these docs].(<a href=\"https://docs.github.com/en/rest/codespaces/organizations?apiVersion=2022-11-28#manage-access-control-for-organization-codespaces\">https://docs.github.com/en/rest/codespaces/organizations?apiVersion=2022-11-28#manage-access-control-for-organization-codespaces</a>) You must authenticate using an access token with the <code>admin:org</code> scope to use this endpoint.</p>",
|
||||
"statusCodes": [
|
||||
{
|
||||
"httpStatusCode": "204",
|
||||
"description": "<p>Response when successfully modifying permissions.</p>"
|
||||
},
|
||||
{
|
||||
"httpStatusCode": "304",
|
||||
"description": "<p>Not modified</p>"
|
||||
},
|
||||
{
|
||||
"httpStatusCode": "400",
|
||||
"description": "<p>Users are neither members nor collaborators of this organization.</p>"
|
||||
},
|
||||
{
|
||||
"httpStatusCode": "404",
|
||||
"description": "<p>Resource not found</p>"
|
||||
},
|
||||
{
|
||||
"httpStatusCode": "422",
|
||||
"description": "<p>Validation failed, or the endpoint has been spammed.</p>"
|
||||
},
|
||||
{
|
||||
"httpStatusCode": "500",
|
||||
"description": "<p>Internal Error</p>"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"serverUrl": "https://api.github.com",
|
||||
"verb": "get",
|
||||
@@ -279347,13 +279527,13 @@
|
||||
"type": "string or null",
|
||||
"name": "assignee",
|
||||
"in": "body",
|
||||
"description": "<p>Login for the user that this issue should be assigned to. <strong>This field is deprecated.</strong></p>"
|
||||
"description": "<p>Username to assign to this issue. <strong>This field is deprecated.</strong></p>"
|
||||
},
|
||||
{
|
||||
"type": "string",
|
||||
"name": "state",
|
||||
"in": "body",
|
||||
"description": "<p>State of the issue. Either <code>open</code> or <code>closed</code>.</p>",
|
||||
"description": "<p>The open or closed state of the issue.</p>",
|
||||
"enum": [
|
||||
"open",
|
||||
"closed"
|
||||
@@ -279363,7 +279543,7 @@
|
||||
"type": "string or null",
|
||||
"name": "state_reason",
|
||||
"in": "body",
|
||||
"description": "<p>The reason for the current state</p>",
|
||||
"description": "<p>The reason for the state change. Ignored unless <code>state</code> is changed.</p>",
|
||||
"enum": [
|
||||
"completed",
|
||||
"not_planned",
|
||||
@@ -279375,19 +279555,19 @@
|
||||
"type": "null or string or integer or string or integer",
|
||||
"name": "milestone",
|
||||
"in": "body",
|
||||
"description": "<p>The <code>number</code> of the milestone to associate this issue with or <code>null</code> to remove current. <em>NOTE: Only users with push access can set the milestone for issues. The milestone is silently dropped otherwise.</em></p>"
|
||||
"description": "<p>The <code>number</code> of the milestone to associate this issue with or use <code>null</code> to remove the current milestone. Only users with push access can set the milestone for issues. Without push access to the repository, milestone changes are silently dropped.</p>"
|
||||
},
|
||||
{
|
||||
"type": "array",
|
||||
"name": "labels",
|
||||
"in": "body",
|
||||
"description": "<p>Labels to associate with this issue. Pass one or more Labels to <em>replace</em> the set of Labels on this Issue. Send an empty array (<code>[]</code>) to clear all Labels from the Issue. <em>NOTE: Only users with push access can set labels for issues. Labels are silently dropped otherwise.</em></p>"
|
||||
"description": "<p>Labels to associate with this issue. Pass one or more labels to <em>replace</em> the set of labels on this issue. Send an empty array (<code>[]</code>) to clear all labels from the issue. Only users with push access can set labels for issues. Without push access to the repository, label changes are silently dropped.</p>"
|
||||
},
|
||||
{
|
||||
"type": "array of strings",
|
||||
"name": "assignees",
|
||||
"in": "body",
|
||||
"description": "<p>Logins for Users to assign to this issue. Pass one or more user logins to <em>replace</em> the set of assignees on this Issue. Send an empty array (<code>[]</code>) to clear all assignees from the Issue. <em>NOTE: Only users with push access can set assignees for new issues. Assignees are silently dropped otherwise.</em></p>"
|
||||
"description": "<p>Usernames to assign to this issue. Pass one or more user logins to <em>replace</em> the set of assignees on this issue. Send an empty array (<code>[]</code>) to clear all assignees from the issue. Only users with push access can set assignees for new issues. Without push access to the repository, assignee changes are silently dropped.</p>"
|
||||
}
|
||||
],
|
||||
"enabledForGitHubApps": true,
|
||||
|
||||
@@ -36673,6 +36673,15 @@
|
||||
"schema": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "environment_name",
|
||||
"in": "path",
|
||||
"required": true,
|
||||
"description": "<p>The name of the environment.</p>",
|
||||
"schema": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
],
|
||||
"bodyParameters": [
|
||||
@@ -36703,7 +36712,8 @@
|
||||
},
|
||||
"parameters": {
|
||||
"repository_id": "REPOSITORY_ID",
|
||||
"name": "NAME"
|
||||
"name": "NAME",
|
||||
"environment_name": "ENVIRONMENT_NAME"
|
||||
}
|
||||
},
|
||||
"response": {
|
||||
@@ -36746,6 +36756,15 @@
|
||||
"schema": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "environment_name",
|
||||
"in": "path",
|
||||
"required": true,
|
||||
"description": "<p>The name of the environment.</p>",
|
||||
"schema": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
],
|
||||
"bodyParameters": [],
|
||||
@@ -36758,7 +36777,8 @@
|
||||
"acceptHeader": "application/vnd.github.v3+json",
|
||||
"parameters": {
|
||||
"repository_id": "REPOSITORY_ID",
|
||||
"name": "NAME"
|
||||
"name": "NAME",
|
||||
"environment_name": "ENVIRONMENT_NAME"
|
||||
}
|
||||
},
|
||||
"response": {
|
||||
@@ -206180,6 +206200,166 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"serverUrl": "https://api.github.com",
|
||||
"verb": "post",
|
||||
"requestPath": "/orgs/{org}/codespaces/billing/selected_users",
|
||||
"title": "Add users to Codespaces billing for an organization",
|
||||
"category": "codespaces",
|
||||
"subcategory": "organizations",
|
||||
"parameters": [
|
||||
{
|
||||
"name": "org",
|
||||
"description": "<p>The organization name. The name is not case sensitive.</p>",
|
||||
"in": "path",
|
||||
"required": true,
|
||||
"schema": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
],
|
||||
"bodyParameters": [
|
||||
{
|
||||
"type": "array of strings",
|
||||
"name": "selected_usernames",
|
||||
"in": "body",
|
||||
"description": "<p>The usernames of the organization members whose codespaces be billed to the organization.</p>",
|
||||
"isRequired": true
|
||||
}
|
||||
],
|
||||
"enabledForGitHubApps": false,
|
||||
"codeExamples": [
|
||||
{
|
||||
"key": "204",
|
||||
"request": {
|
||||
"contentType": "application/json",
|
||||
"description": "Example",
|
||||
"acceptHeader": "application/vnd.github.v3+json",
|
||||
"bodyParameters": {
|
||||
"selected_usernames": [
|
||||
"johnDoe",
|
||||
"atomIO"
|
||||
]
|
||||
},
|
||||
"parameters": {
|
||||
"org": "ORG"
|
||||
}
|
||||
},
|
||||
"response": {
|
||||
"statusCode": "204",
|
||||
"description": "<p>Response when successfully modifying permissions.</p>"
|
||||
}
|
||||
}
|
||||
],
|
||||
"previews": [],
|
||||
"descriptionHTML": "<p>Codespaces for the specified users will be billed to the organization.\nTo use this endpoint, the billing settings for the organization must be set to <code>selected_members</code>. For information on how to change this setting please see [these docs].(<a href=\"https://docs.github.com/en/rest/codespaces/organizations?apiVersion=2022-11-28#manage-access-control-for-organization-codespaces\">https://docs.github.com/en/rest/codespaces/organizations?apiVersion=2022-11-28#manage-access-control-for-organization-codespaces</a>) You must authenticate using an access token with the <code>admin:org</code> scope to use this endpoint.</p>",
|
||||
"statusCodes": [
|
||||
{
|
||||
"httpStatusCode": "204",
|
||||
"description": "<p>Response when successfully modifying permissions.</p>"
|
||||
},
|
||||
{
|
||||
"httpStatusCode": "304",
|
||||
"description": "<p>Not modified</p>"
|
||||
},
|
||||
{
|
||||
"httpStatusCode": "400",
|
||||
"description": "<p>Users are neither members nor collaborators of this organization.</p>"
|
||||
},
|
||||
{
|
||||
"httpStatusCode": "404",
|
||||
"description": "<p>Resource not found</p>"
|
||||
},
|
||||
{
|
||||
"httpStatusCode": "422",
|
||||
"description": "<p>Validation failed, or the endpoint has been spammed.</p>"
|
||||
},
|
||||
{
|
||||
"httpStatusCode": "500",
|
||||
"description": "<p>Internal Error</p>"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"serverUrl": "https://api.github.com",
|
||||
"verb": "delete",
|
||||
"requestPath": "/orgs/{org}/codespaces/billing/selected_users",
|
||||
"title": "Removes users from Codespaces billing for an organization",
|
||||
"category": "codespaces",
|
||||
"subcategory": "organizations",
|
||||
"parameters": [
|
||||
{
|
||||
"name": "org",
|
||||
"description": "<p>The organization name. The name is not case sensitive.</p>",
|
||||
"in": "path",
|
||||
"required": true,
|
||||
"schema": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
],
|
||||
"bodyParameters": [
|
||||
{
|
||||
"type": "array of strings",
|
||||
"name": "selected_usernames",
|
||||
"in": "body",
|
||||
"description": "<p>The usernames of the organization members whose codespaces should not be billed to the organization.</p>",
|
||||
"isRequired": true
|
||||
}
|
||||
],
|
||||
"enabledForGitHubApps": false,
|
||||
"codeExamples": [
|
||||
{
|
||||
"key": "204",
|
||||
"request": {
|
||||
"contentType": "application/json",
|
||||
"description": "Example",
|
||||
"acceptHeader": "application/vnd.github.v3+json",
|
||||
"bodyParameters": {
|
||||
"selected_usernames": [
|
||||
"johnDoe",
|
||||
"atomIO"
|
||||
]
|
||||
},
|
||||
"parameters": {
|
||||
"org": "ORG"
|
||||
}
|
||||
},
|
||||
"response": {
|
||||
"statusCode": "204",
|
||||
"description": "<p>Response when successfully modifying permissions.</p>"
|
||||
}
|
||||
}
|
||||
],
|
||||
"previews": [],
|
||||
"descriptionHTML": "<p>Codespaces for the specified users will no longer be billed to the organization.\nTo use this endpoint, the billing settings for the organization must be set to <code>selected_members</code>. For information on how to change this setting please see [these docs].(<a href=\"https://docs.github.com/en/rest/codespaces/organizations?apiVersion=2022-11-28#manage-access-control-for-organization-codespaces\">https://docs.github.com/en/rest/codespaces/organizations?apiVersion=2022-11-28#manage-access-control-for-organization-codespaces</a>) You must authenticate using an access token with the <code>admin:org</code> scope to use this endpoint.</p>",
|
||||
"statusCodes": [
|
||||
{
|
||||
"httpStatusCode": "204",
|
||||
"description": "<p>Response when successfully modifying permissions.</p>"
|
||||
},
|
||||
{
|
||||
"httpStatusCode": "304",
|
||||
"description": "<p>Not modified</p>"
|
||||
},
|
||||
{
|
||||
"httpStatusCode": "400",
|
||||
"description": "<p>Users are neither members nor collaborators of this organization.</p>"
|
||||
},
|
||||
{
|
||||
"httpStatusCode": "404",
|
||||
"description": "<p>Resource not found</p>"
|
||||
},
|
||||
{
|
||||
"httpStatusCode": "422",
|
||||
"description": "<p>Validation failed, or the endpoint has been spammed.</p>"
|
||||
},
|
||||
{
|
||||
"httpStatusCode": "500",
|
||||
"description": "<p>Internal Error</p>"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"serverUrl": "https://api.github.com",
|
||||
"verb": "get",
|
||||
@@ -288805,13 +288985,13 @@
|
||||
"type": "string or null",
|
||||
"name": "assignee",
|
||||
"in": "body",
|
||||
"description": "<p>Login for the user that this issue should be assigned to. <strong>This field is deprecated.</strong></p>"
|
||||
"description": "<p>Username to assign to this issue. <strong>This field is deprecated.</strong></p>"
|
||||
},
|
||||
{
|
||||
"type": "string",
|
||||
"name": "state",
|
||||
"in": "body",
|
||||
"description": "<p>State of the issue. Either <code>open</code> or <code>closed</code>.</p>",
|
||||
"description": "<p>The open or closed state of the issue.</p>",
|
||||
"enum": [
|
||||
"open",
|
||||
"closed"
|
||||
@@ -288821,7 +289001,7 @@
|
||||
"type": "string or null",
|
||||
"name": "state_reason",
|
||||
"in": "body",
|
||||
"description": "<p>The reason for the current state</p>",
|
||||
"description": "<p>The reason for the state change. Ignored unless <code>state</code> is changed.</p>",
|
||||
"enum": [
|
||||
"completed",
|
||||
"not_planned",
|
||||
@@ -288833,19 +289013,19 @@
|
||||
"type": "null or string or integer or string or integer",
|
||||
"name": "milestone",
|
||||
"in": "body",
|
||||
"description": "<p>The <code>number</code> of the milestone to associate this issue with or <code>null</code> to remove current. <em>NOTE: Only users with push access can set the milestone for issues. The milestone is silently dropped otherwise.</em></p>"
|
||||
"description": "<p>The <code>number</code> of the milestone to associate this issue with or use <code>null</code> to remove the current milestone. Only users with push access can set the milestone for issues. Without push access to the repository, milestone changes are silently dropped.</p>"
|
||||
},
|
||||
{
|
||||
"type": "array",
|
||||
"name": "labels",
|
||||
"in": "body",
|
||||
"description": "<p>Labels to associate with this issue. Pass one or more Labels to <em>replace</em> the set of Labels on this Issue. Send an empty array (<code>[]</code>) to clear all Labels from the Issue. <em>NOTE: Only users with push access can set labels for issues. Labels are silently dropped otherwise.</em></p>"
|
||||
"description": "<p>Labels to associate with this issue. Pass one or more labels to <em>replace</em> the set of labels on this issue. Send an empty array (<code>[]</code>) to clear all labels from the issue. Only users with push access can set labels for issues. Without push access to the repository, label changes are silently dropped.</p>"
|
||||
},
|
||||
{
|
||||
"type": "array of strings",
|
||||
"name": "assignees",
|
||||
"in": "body",
|
||||
"description": "<p>Logins for Users to assign to this issue. Pass one or more user logins to <em>replace</em> the set of assignees on this Issue. Send an empty array (<code>[]</code>) to clear all assignees from the Issue. <em>NOTE: Only users with push access can set assignees for new issues. Assignees are silently dropped otherwise.</em></p>"
|
||||
"description": "<p>Usernames to assign to this issue. Pass one or more user logins to <em>replace</em> the set of assignees on this issue. Send an empty array (<code>[]</code>) to clear all assignees from the issue. Only users with push access can set assignees for new issues. Without push access to the repository, assignee changes are silently dropped.</p>"
|
||||
}
|
||||
],
|
||||
"enabledForGitHubApps": true,
|
||||
|
||||
@@ -209453,13 +209453,13 @@
|
||||
"type": "string or null",
|
||||
"name": "assignee",
|
||||
"in": "body",
|
||||
"description": "<p>Login for the user that this issue should be assigned to. <strong>This field is deprecated.</strong></p>"
|
||||
"description": "<p>Username to assign to this issue. <strong>This field is deprecated.</strong></p>"
|
||||
},
|
||||
{
|
||||
"type": "string",
|
||||
"name": "state",
|
||||
"in": "body",
|
||||
"description": "<p>State of the issue. Either <code>open</code> or <code>closed</code>.</p>",
|
||||
"description": "<p>The open or closed state of the issue.</p>",
|
||||
"enum": [
|
||||
"open",
|
||||
"closed"
|
||||
@@ -209469,7 +209469,7 @@
|
||||
"type": "string or null",
|
||||
"name": "state_reason",
|
||||
"in": "body",
|
||||
"description": "<p>The reason for the current state</p>",
|
||||
"description": "<p>The reason for the state change. Ignored unless <code>state</code> is changed.</p>",
|
||||
"enum": [
|
||||
"completed",
|
||||
"not_planned",
|
||||
@@ -209481,19 +209481,19 @@
|
||||
"type": "null or string or integer or string or integer",
|
||||
"name": "milestone",
|
||||
"in": "body",
|
||||
"description": "<p>The <code>number</code> of the milestone to associate this issue with or <code>null</code> to remove current. <em>NOTE: Only users with push access can set the milestone for issues. The milestone is silently dropped otherwise.</em></p>"
|
||||
"description": "<p>The <code>number</code> of the milestone to associate this issue with or use <code>null</code> to remove the current milestone. Only users with push access can set the milestone for issues. Without push access to the repository, milestone changes are silently dropped.</p>"
|
||||
},
|
||||
{
|
||||
"type": "array",
|
||||
"name": "labels",
|
||||
"in": "body",
|
||||
"description": "<p>Labels to associate with this issue. Pass one or more Labels to <em>replace</em> the set of Labels on this Issue. Send an empty array (<code>[]</code>) to clear all Labels from the Issue. <em>NOTE: Only users with push access can set labels for issues. Labels are silently dropped otherwise.</em></p>"
|
||||
"description": "<p>Labels to associate with this issue. Pass one or more labels to <em>replace</em> the set of labels on this issue. Send an empty array (<code>[]</code>) to clear all labels from the issue. Only users with push access can set labels for issues. Without push access to the repository, label changes are silently dropped.</p>"
|
||||
},
|
||||
{
|
||||
"type": "array of strings",
|
||||
"name": "assignees",
|
||||
"in": "body",
|
||||
"description": "<p>Logins for Users to assign to this issue. Pass one or more user logins to <em>replace</em> the set of assignees on this Issue. Send an empty array (<code>[]</code>) to clear all assignees from the Issue. <em>NOTE: Only users with push access can set assignees for new issues. Assignees are silently dropped otherwise.</em></p>"
|
||||
"description": "<p>Usernames to assign to this issue. Pass one or more user logins to <em>replace</em> the set of assignees on this issue. Send an empty array (<code>[]</code>) to clear all assignees from the issue. Only users with push access can set assignees for new issues. Without push access to the repository, assignee changes are silently dropped.</p>"
|
||||
}
|
||||
],
|
||||
"enabledForGitHubApps": true,
|
||||
|
||||
@@ -217138,13 +217138,13 @@
|
||||
"type": "string or null",
|
||||
"name": "assignee",
|
||||
"in": "body",
|
||||
"description": "<p>Login for the user that this issue should be assigned to. <strong>This field is deprecated.</strong></p>"
|
||||
"description": "<p>Username to assign to this issue. <strong>This field is deprecated.</strong></p>"
|
||||
},
|
||||
{
|
||||
"type": "string",
|
||||
"name": "state",
|
||||
"in": "body",
|
||||
"description": "<p>State of the issue. Either <code>open</code> or <code>closed</code>.</p>",
|
||||
"description": "<p>The open or closed state of the issue.</p>",
|
||||
"enum": [
|
||||
"open",
|
||||
"closed"
|
||||
@@ -217154,7 +217154,7 @@
|
||||
"type": "string or null",
|
||||
"name": "state_reason",
|
||||
"in": "body",
|
||||
"description": "<p>The reason for the current state</p>",
|
||||
"description": "<p>The reason for the state change. Ignored unless <code>state</code> is changed.</p>",
|
||||
"enum": [
|
||||
"completed",
|
||||
"not_planned",
|
||||
@@ -217166,19 +217166,19 @@
|
||||
"type": "null or string or integer or string or integer",
|
||||
"name": "milestone",
|
||||
"in": "body",
|
||||
"description": "<p>The <code>number</code> of the milestone to associate this issue with or <code>null</code> to remove current. <em>NOTE: Only users with push access can set the milestone for issues. The milestone is silently dropped otherwise.</em></p>"
|
||||
"description": "<p>The <code>number</code> of the milestone to associate this issue with or use <code>null</code> to remove the current milestone. Only users with push access can set the milestone for issues. Without push access to the repository, milestone changes are silently dropped.</p>"
|
||||
},
|
||||
{
|
||||
"type": "array",
|
||||
"name": "labels",
|
||||
"in": "body",
|
||||
"description": "<p>Labels to associate with this issue. Pass one or more Labels to <em>replace</em> the set of Labels on this Issue. Send an empty array (<code>[]</code>) to clear all Labels from the Issue. <em>NOTE: Only users with push access can set labels for issues. Labels are silently dropped otherwise.</em></p>"
|
||||
"description": "<p>Labels to associate with this issue. Pass one or more labels to <em>replace</em> the set of labels on this issue. Send an empty array (<code>[]</code>) to clear all labels from the issue. Only users with push access can set labels for issues. Without push access to the repository, label changes are silently dropped.</p>"
|
||||
},
|
||||
{
|
||||
"type": "array of strings",
|
||||
"name": "assignees",
|
||||
"in": "body",
|
||||
"description": "<p>Logins for Users to assign to this issue. Pass one or more user logins to <em>replace</em> the set of assignees on this Issue. Send an empty array (<code>[]</code>) to clear all assignees from the Issue. <em>NOTE: Only users with push access can set assignees for new issues. Assignees are silently dropped otherwise.</em></p>"
|
||||
"description": "<p>Usernames to assign to this issue. Pass one or more user logins to <em>replace</em> the set of assignees on this issue. Send an empty array (<code>[]</code>) to clear all assignees from the issue. Only users with push access can set assignees for new issues. Without push access to the repository, assignee changes are silently dropped.</p>"
|
||||
}
|
||||
],
|
||||
"enabledForGitHubApps": true,
|
||||
|
||||
@@ -224296,13 +224296,13 @@
|
||||
"type": "string or null",
|
||||
"name": "assignee",
|
||||
"in": "body",
|
||||
"description": "<p>Login for the user that this issue should be assigned to. <strong>This field is deprecated.</strong></p>"
|
||||
"description": "<p>Username to assign to this issue. <strong>This field is deprecated.</strong></p>"
|
||||
},
|
||||
{
|
||||
"type": "string",
|
||||
"name": "state",
|
||||
"in": "body",
|
||||
"description": "<p>State of the issue. Either <code>open</code> or <code>closed</code>.</p>",
|
||||
"description": "<p>The open or closed state of the issue.</p>",
|
||||
"enum": [
|
||||
"open",
|
||||
"closed"
|
||||
@@ -224312,7 +224312,7 @@
|
||||
"type": "string or null",
|
||||
"name": "state_reason",
|
||||
"in": "body",
|
||||
"description": "<p>The reason for the current state</p>",
|
||||
"description": "<p>The reason for the state change. Ignored unless <code>state</code> is changed.</p>",
|
||||
"enum": [
|
||||
"completed",
|
||||
"not_planned",
|
||||
@@ -224324,19 +224324,19 @@
|
||||
"type": "null or string or integer or string or integer",
|
||||
"name": "milestone",
|
||||
"in": "body",
|
||||
"description": "<p>The <code>number</code> of the milestone to associate this issue with or <code>null</code> to remove current. <em>NOTE: Only users with push access can set the milestone for issues. The milestone is silently dropped otherwise.</em></p>"
|
||||
"description": "<p>The <code>number</code> of the milestone to associate this issue with or use <code>null</code> to remove the current milestone. Only users with push access can set the milestone for issues. Without push access to the repository, milestone changes are silently dropped.</p>"
|
||||
},
|
||||
{
|
||||
"type": "array",
|
||||
"name": "labels",
|
||||
"in": "body",
|
||||
"description": "<p>Labels to associate with this issue. Pass one or more Labels to <em>replace</em> the set of Labels on this Issue. Send an empty array (<code>[]</code>) to clear all Labels from the Issue. <em>NOTE: Only users with push access can set labels for issues. Labels are silently dropped otherwise.</em></p>"
|
||||
"description": "<p>Labels to associate with this issue. Pass one or more labels to <em>replace</em> the set of labels on this issue. Send an empty array (<code>[]</code>) to clear all labels from the issue. Only users with push access can set labels for issues. Without push access to the repository, label changes are silently dropped.</p>"
|
||||
},
|
||||
{
|
||||
"type": "array of strings",
|
||||
"name": "assignees",
|
||||
"in": "body",
|
||||
"description": "<p>Logins for Users to assign to this issue. Pass one or more user logins to <em>replace</em> the set of assignees on this Issue. Send an empty array (<code>[]</code>) to clear all assignees from the Issue. <em>NOTE: Only users with push access can set assignees for new issues. Assignees are silently dropped otherwise.</em></p>"
|
||||
"description": "<p>Usernames to assign to this issue. Pass one or more user logins to <em>replace</em> the set of assignees on this issue. Send an empty array (<code>[]</code>) to clear all assignees from the issue. Only users with push access can set assignees for new issues. Without push access to the repository, assignee changes are silently dropped.</p>"
|
||||
}
|
||||
],
|
||||
"enabledForGitHubApps": true,
|
||||
|
||||
@@ -232831,13 +232831,13 @@
|
||||
"type": "string or null",
|
||||
"name": "assignee",
|
||||
"in": "body",
|
||||
"description": "<p>Login for the user that this issue should be assigned to. <strong>This field is deprecated.</strong></p>"
|
||||
"description": "<p>Username to assign to this issue. <strong>This field is deprecated.</strong></p>"
|
||||
},
|
||||
{
|
||||
"type": "string",
|
||||
"name": "state",
|
||||
"in": "body",
|
||||
"description": "<p>State of the issue. Either <code>open</code> or <code>closed</code>.</p>",
|
||||
"description": "<p>The open or closed state of the issue.</p>",
|
||||
"enum": [
|
||||
"open",
|
||||
"closed"
|
||||
@@ -232847,7 +232847,7 @@
|
||||
"type": "string or null",
|
||||
"name": "state_reason",
|
||||
"in": "body",
|
||||
"description": "<p>The reason for the current state</p>",
|
||||
"description": "<p>The reason for the state change. Ignored unless <code>state</code> is changed.</p>",
|
||||
"enum": [
|
||||
"completed",
|
||||
"not_planned",
|
||||
@@ -232859,19 +232859,19 @@
|
||||
"type": "null or string or integer or string or integer",
|
||||
"name": "milestone",
|
||||
"in": "body",
|
||||
"description": "<p>The <code>number</code> of the milestone to associate this issue with or <code>null</code> to remove current. <em>NOTE: Only users with push access can set the milestone for issues. The milestone is silently dropped otherwise.</em></p>"
|
||||
"description": "<p>The <code>number</code> of the milestone to associate this issue with or use <code>null</code> to remove the current milestone. Only users with push access can set the milestone for issues. Without push access to the repository, milestone changes are silently dropped.</p>"
|
||||
},
|
||||
{
|
||||
"type": "array",
|
||||
"name": "labels",
|
||||
"in": "body",
|
||||
"description": "<p>Labels to associate with this issue. Pass one or more Labels to <em>replace</em> the set of Labels on this Issue. Send an empty array (<code>[]</code>) to clear all Labels from the Issue. <em>NOTE: Only users with push access can set labels for issues. Labels are silently dropped otherwise.</em></p>"
|
||||
"description": "<p>Labels to associate with this issue. Pass one or more labels to <em>replace</em> the set of labels on this issue. Send an empty array (<code>[]</code>) to clear all labels from the issue. Only users with push access can set labels for issues. Without push access to the repository, label changes are silently dropped.</p>"
|
||||
},
|
||||
{
|
||||
"type": "array of strings",
|
||||
"name": "assignees",
|
||||
"in": "body",
|
||||
"description": "<p>Logins for Users to assign to this issue. Pass one or more user logins to <em>replace</em> the set of assignees on this Issue. Send an empty array (<code>[]</code>) to clear all assignees from the Issue. <em>NOTE: Only users with push access can set assignees for new issues. Assignees are silently dropped otherwise.</em></p>"
|
||||
"description": "<p>Usernames to assign to this issue. Pass one or more user logins to <em>replace</em> the set of assignees on this issue. Send an empty array (<code>[]</code>) to clear all assignees from the issue. Only users with push access can set assignees for new issues. Without push access to the repository, assignee changes are silently dropped.</p>"
|
||||
}
|
||||
],
|
||||
"enabledForGitHubApps": true,
|
||||
|
||||
@@ -235705,13 +235705,13 @@
|
||||
"type": "string or null",
|
||||
"name": "assignee",
|
||||
"in": "body",
|
||||
"description": "<p>Login for the user that this issue should be assigned to. <strong>This field is deprecated.</strong></p>"
|
||||
"description": "<p>Username to assign to this issue. <strong>This field is deprecated.</strong></p>"
|
||||
},
|
||||
{
|
||||
"type": "string",
|
||||
"name": "state",
|
||||
"in": "body",
|
||||
"description": "<p>State of the issue. Either <code>open</code> or <code>closed</code>.</p>",
|
||||
"description": "<p>The open or closed state of the issue.</p>",
|
||||
"enum": [
|
||||
"open",
|
||||
"closed"
|
||||
@@ -235721,7 +235721,7 @@
|
||||
"type": "string or null",
|
||||
"name": "state_reason",
|
||||
"in": "body",
|
||||
"description": "<p>The reason for the current state</p>",
|
||||
"description": "<p>The reason for the state change. Ignored unless <code>state</code> is changed.</p>",
|
||||
"enum": [
|
||||
"completed",
|
||||
"not_planned",
|
||||
@@ -235733,19 +235733,19 @@
|
||||
"type": "null or string or integer or string or integer",
|
||||
"name": "milestone",
|
||||
"in": "body",
|
||||
"description": "<p>The <code>number</code> of the milestone to associate this issue with or <code>null</code> to remove current. <em>NOTE: Only users with push access can set the milestone for issues. The milestone is silently dropped otherwise.</em></p>"
|
||||
"description": "<p>The <code>number</code> of the milestone to associate this issue with or use <code>null</code> to remove the current milestone. Only users with push access can set the milestone for issues. Without push access to the repository, milestone changes are silently dropped.</p>"
|
||||
},
|
||||
{
|
||||
"type": "array",
|
||||
"name": "labels",
|
||||
"in": "body",
|
||||
"description": "<p>Labels to associate with this issue. Pass one or more Labels to <em>replace</em> the set of Labels on this Issue. Send an empty array (<code>[]</code>) to clear all Labels from the Issue. <em>NOTE: Only users with push access can set labels for issues. Labels are silently dropped otherwise.</em></p>"
|
||||
"description": "<p>Labels to associate with this issue. Pass one or more labels to <em>replace</em> the set of labels on this issue. Send an empty array (<code>[]</code>) to clear all labels from the issue. Only users with push access can set labels for issues. Without push access to the repository, label changes are silently dropped.</p>"
|
||||
},
|
||||
{
|
||||
"type": "array of strings",
|
||||
"name": "assignees",
|
||||
"in": "body",
|
||||
"description": "<p>Logins for Users to assign to this issue. Pass one or more user logins to <em>replace</em> the set of assignees on this Issue. Send an empty array (<code>[]</code>) to clear all assignees from the Issue. <em>NOTE: Only users with push access can set assignees for new issues. Assignees are silently dropped otherwise.</em></p>"
|
||||
"description": "<p>Usernames to assign to this issue. Pass one or more user logins to <em>replace</em> the set of assignees on this issue. Send an empty array (<code>[]</code>) to clear all assignees from the issue. Only users with push access can set assignees for new issues. Without push access to the repository, assignee changes are silently dropped.</p>"
|
||||
}
|
||||
],
|
||||
"enabledForGitHubApps": true,
|
||||
|
||||
@@ -184071,13 +184071,13 @@
|
||||
"type": "string or null",
|
||||
"name": "assignee",
|
||||
"in": "body",
|
||||
"description": "<p>Login for the user that this issue should be assigned to. <strong>This field is deprecated.</strong></p>"
|
||||
"description": "<p>Username to assign to this issue. <strong>This field is deprecated.</strong></p>"
|
||||
},
|
||||
{
|
||||
"type": "string",
|
||||
"name": "state",
|
||||
"in": "body",
|
||||
"description": "<p>State of the issue. Either <code>open</code> or <code>closed</code>.</p>",
|
||||
"description": "<p>The open or closed state of the issue.</p>",
|
||||
"enum": [
|
||||
"open",
|
||||
"closed"
|
||||
@@ -184087,7 +184087,7 @@
|
||||
"type": "string or null",
|
||||
"name": "state_reason",
|
||||
"in": "body",
|
||||
"description": "<p>The reason for the current state</p>",
|
||||
"description": "<p>The reason for the state change. Ignored unless <code>state</code> is changed.</p>",
|
||||
"enum": [
|
||||
"completed",
|
||||
"not_planned",
|
||||
@@ -184099,19 +184099,19 @@
|
||||
"type": "null or string or integer or string or integer",
|
||||
"name": "milestone",
|
||||
"in": "body",
|
||||
"description": "<p>The <code>number</code> of the milestone to associate this issue with or <code>null</code> to remove current. <em>NOTE: Only users with push access can set the milestone for issues. The milestone is silently dropped otherwise.</em></p>"
|
||||
"description": "<p>The <code>number</code> of the milestone to associate this issue with or use <code>null</code> to remove the current milestone. Only users with push access can set the milestone for issues. Without push access to the repository, milestone changes are silently dropped.</p>"
|
||||
},
|
||||
{
|
||||
"type": "array",
|
||||
"name": "labels",
|
||||
"in": "body",
|
||||
"description": "<p>Labels to associate with this issue. Pass one or more Labels to <em>replace</em> the set of Labels on this Issue. Send an empty array (<code>[]</code>) to clear all Labels from the Issue. <em>NOTE: Only users with push access can set labels for issues. Labels are silently dropped otherwise.</em></p>"
|
||||
"description": "<p>Labels to associate with this issue. Pass one or more labels to <em>replace</em> the set of labels on this issue. Send an empty array (<code>[]</code>) to clear all labels from the issue. Only users with push access can set labels for issues. Without push access to the repository, label changes are silently dropped.</p>"
|
||||
},
|
||||
{
|
||||
"type": "array of strings",
|
||||
"name": "assignees",
|
||||
"in": "body",
|
||||
"description": "<p>Logins for Users to assign to this issue. Pass one or more user logins to <em>replace</em> the set of assignees on this Issue. Send an empty array (<code>[]</code>) to clear all assignees from the Issue. <em>NOTE: Only users with push access can set assignees for new issues. Assignees are silently dropped otherwise.</em></p>"
|
||||
"description": "<p>Usernames to assign to this issue. Pass one or more user logins to <em>replace</em> the set of assignees on this issue. Send an empty array (<code>[]</code>) to clear all assignees from the issue. Only users with push access can set assignees for new issues. Without push access to the repository, assignee changes are silently dropped.</p>"
|
||||
}
|
||||
],
|
||||
"enabledForGitHubApps": true,
|
||||
|
||||
Reference in New Issue
Block a user