{ "opencollection": "1.0.0", "info": { "name": "Workday Extend Workday Custom Objects App Configurations Apps 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": "Apps", "type": "folder" }, "items": [ { "info": { "name": "Workday Extend List Extend applications", "type": "http" }, "http": { "method": "GET", "url": "https://{baseUrl}/api/customObjects/v1/{tenant}/apps", "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 Workday Extend applications registered within the tenant. Supports filtering by status, name, and other attributes." }, { "info": { "name": "Workday Extend Register a new Extend application", "type": "http" }, "http": { "method": "POST", "url": "https://{baseUrl}/api/customObjects/v1/{tenant}/apps", "body": { "type": "json", "data": "{}" } }, "docs": "Registers a new Workday Extend application within the tenant. The app definition includes metadata, permissions, and configuration schema." }, { "info": { "name": "Workday Extend Retrieve an Extend application", "type": "http" }, "http": { "method": "GET", "url": "https://{baseUrl}/api/customObjects/v1/{tenant}/apps/:appId", "params": [ { "name": "appId", "value": "", "type": "path", "description": "The unique identifier of the Extend application" } ] }, "docs": "Returns the details of a specific Workday Extend application including its metadata, configuration, deployment status, and version history." }, { "info": { "name": "Workday Extend Update an Extend application", "type": "http" }, "http": { "method": "PATCH", "url": "https://{baseUrl}/api/customObjects/v1/{tenant}/apps/:appId", "params": [ { "name": "appId", "value": "", "type": "path", "description": "The unique identifier of the Extend application" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates the metadata or configuration of an existing Workday Extend application. Only the fields provided in the request body are updated." }, { "info": { "name": "Workday Extend Delete an Extend application", "type": "http" }, "http": { "method": "DELETE", "url": "https://{baseUrl}/api/customObjects/v1/{tenant}/apps/:appId", "params": [ { "name": "appId", "value": "", "type": "path", "description": "The unique identifier of the Extend application" } ] }, "docs": "Removes a Workday Extend application registration from the tenant. The application must be undeployed before deletion." } ] } ], "bundled": true }