Get project
const url = 'https://localhost:10001/api/v1/organizations/example/projects/example';const options = {method: 'GET', headers: {Authorization: '<Authorization>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://localhost:10001/api/v1/organizations/example/projects/example \ --header 'Authorization: <Authorization>'Retrieve a specific project by its ID
Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ”Organization ID or UUID (urn:uuid optional)
Project ID, UUID (urn:uuid optional), or slug:my-project
Responses
Section titled “ Responses ”Project
An AI initiative within an organization, and the scope most access is granted against
object
Set via the archive endpoint
Set via the archive endpoint
Taken from the path on create
Derived from name
Urn:uuid form
Example generated
{ "description": "example", "name": "example"}Bad request - Invalid project ID
Error body returned by the governance endpoints; the message is human-readable and not a stable identifier
object
Example
{ "error": "Invalid request body"}Unauthorized - Authentication required
Error body returned by the governance endpoints; the message is human-readable and not a stable identifier
object
Example
{ "error": "Invalid request body"}Forbidden - No project access
Error body returned by the governance endpoints; the message is human-readable and not a stable identifier
object
Example
{ "error": "Invalid request body"}Project not found
Error body returned by the governance endpoints; the message is human-readable and not a stable identifier
object
Example
{ "error": "Invalid request body"}Internal server error
Error body returned by the governance endpoints; the message is human-readable and not a stable identifier
object
Example
{ "error": "Invalid request body"}