{ "opencollection": "1.0.0", "info": { "name": "Workday Extend Workday Custom Objects App Configurations Schema Introspection API", "version": "v1" }, "request": { "auth": { "type": "oauth2", "flow": "authorization_code", "authorizationUrl": "https://{baseUrl}/authorize", "accessTokenUrl": "https://{baseUrl}/oauth2/{tenant}/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "items": [ { "info": { "name": "Schema Introspection", "type": "folder" }, "items": [ { "info": { "name": "Workday Extend Retrieve the graph schema", "type": "http" }, "http": { "method": "GET", "url": "https://{baseUrl}/api/customObjects/v1/{tenant}/schema" }, "docs": "Returns the full graph schema including all available business object types, their fields, relationships, and query capabilities. Used for introspection and discovery of the data model." }, { "info": { "name": "Workday Extend List available business object types", "type": "http" }, "http": { "method": "GET", "url": "https://{baseUrl}/api/customObjects/v1/{tenant}/schema/types", "params": [ { "name": "limit", "value": "", "type": "query", "description": "Maximum number of results to return" }, { "name": "offset", "value": "", "type": "query", "description": "Number of results to skip for pagination" }, { "name": "search", "value": "", "type": "query", "description": "Search term to filter results" } ] }, "docs": "Returns a collection of available business object types that can be queried through the Graph API, including their descriptions and available fields." }, { "info": { "name": "Workday Extend Retrieve a specific business object type schema", "type": "http" }, "http": { "method": "GET", "url": "https://{baseUrl}/api/customObjects/v1/{tenant}/schema/types/:typeName", "params": [ { "name": "typeName", "value": "", "type": "path", "description": "The name of the business object type" } ] }, "docs": "Returns the full schema definition for a specific business object type, including all fields, their types, relationships to other objects, and available query operations." } ] } ], "bundled": true }