Retrieve a project

Retrieves information about a project given the project URL name.

Securityoidc-token or oauth2-client-credentials or oauth2-open-industrial-data or oauth2-auth-code
Request
path Parameters
project
required
string

The CDF project name, equal to the project variable in the server URL.

Example: publicdata
Responses
200

Information about the project.

get/projects/{project}
Request samples
const projectInfo = await client.projects.retrieve('publicdata');
Response samples
application/json
{
  • "name": "Open Industrial Data",
  • "urlName": "publicdata",
  • "oidcConfiguration": {
    • "jwksUrl": "string",
    • "tokenUrl": "string",
    • "issuer": "string",
    • "audience": "string",
    • "skewMs": 0,
    • "accessClaims": [
      ],
    • "scopeClaims": [
      ],
    • "logClaims": [
      ],
    • "isGroupCallbackEnabled": false,
    • "identityProviderScope": "string"
    },
  • "userProfilesConfiguration": {
    • "enabled": true
    }
}