Get list of conflicting packages during Docker migration for user
GET
/users/{username}/docker/conflicts https://api.github.com
Lists all packages that are in a specific user's namespace, that the requesting user has access to, and that encountered a conflict during Docker migration.
OAuth app tokens and personal access tokens (classic) need the read:packages scope to use this endpoint.
Parameters
path Path Parameters
| Name | Type |
|---|---|
username
required
The handle for the GitHub user account. | string |
Responses
200 application/json
Response
interface Package {
id: number;
name: string;
package_type: "npm" | "maven" | "rubygems" | "docker" | "nuget" | "container";
url: string;
html_url: string;
version_count: number;
visibility: "private" | "public";
owner?:SimpleUser | null;
repository?:MinimalRepository | null;
created_at: string;
updated_at: string;
}[]
id: number;
name: string;
package_type: "npm" | "maven" | "rubygems" | "docker" | "nuget" | "container";
url: string;
html_url: string;
version_count: number;
visibility: "private" | "public";
owner?:
repository?:
created_at: string;
updated_at: string;
}[]
Client Errors
401 application/json
Requires authentication
interface BasicError {
message?: string;
documentation_url?: string;
url?: string;
status?: string;
}
message?: string;
documentation_url?: string;
url?: string;
status?: string;
}
403 application/json
Forbidden
interface BasicError {
message?: string;
documentation_url?: string;
url?: string;
status?: string;
}
message?: string;
documentation_url?: string;
url?: string;
status?: string;
}