{ "opencollection": "1.0.0", "info": { "name": "Microsoft Project Online REST Assignments Lookup Tables API", "version": "1.0" }, "request": { "auth": { "type": "oauth2", "flow": "authorization_code", "authorizationUrl": "https://login.microsoftonline.com/common/oauth2/authorize", "accessTokenUrl": "https://login.microsoftonline.com/common/oauth2/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "items": [ { "info": { "name": "Lookup Tables", "type": "folder" }, "items": [ { "info": { "name": "Microsoft Project List Lookup Tables", "type": "http" }, "http": { "method": "GET", "url": "https://{tenant}.sharepoint.com/sites/pwa/_api/ProjectServer/LookupTables" }, "docs": "Retrieve all lookup table definitions." }, { "info": { "name": "Microsoft Project Create Lookup Table", "type": "http" }, "http": { "method": "POST", "url": "https://{tenant}.sharepoint.com/sites/pwa/_api/ProjectServer/LookupTables", "body": { "type": "json", "data": "{}" } }, "docs": "Create a new lookup table definition." }, { "info": { "name": "Microsoft Project Get Lookup Table", "type": "http" }, "http": { "method": "GET", "url": "https://{tenant}.sharepoint.com/sites/pwa/_api/ProjectServer/LookupTables(':tableId')", "params": [ { "name": "tableId", "value": "", "type": "path", "description": "The GUID identifier of the lookup table" } ] }, "docs": "Retrieve a specific lookup table by ID." }, { "info": { "name": "Microsoft Project Delete Lookup Table", "type": "http" }, "http": { "method": "DELETE", "url": "https://{tenant}.sharepoint.com/sites/pwa/_api/ProjectServer/LookupTables(':tableId')", "params": [ { "name": "tableId", "value": "", "type": "path", "description": "The GUID identifier of the lookup table" } ] }, "docs": "Delete a lookup table by ID." }, { "info": { "name": "Microsoft Project List Lookup Table Entries", "type": "http" }, "http": { "method": "GET", "url": "https://{tenant}.sharepoint.com/sites/pwa/_api/ProjectServer/LookupTables(':tableId')/Entries", "params": [ { "name": "tableId", "value": "", "type": "path", "description": "The GUID identifier of the lookup table" } ] }, "docs": "Retrieve all entries in a lookup table." }, { "info": { "name": "Microsoft Project Create Lookup Table Entry", "type": "http" }, "http": { "method": "POST", "url": "https://{tenant}.sharepoint.com/sites/pwa/_api/ProjectServer/LookupTables(':tableId')/Entries", "params": [ { "name": "tableId", "value": "", "type": "path", "description": "The GUID identifier of the lookup table" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Create a new entry in a lookup table." } ] } ], "bundled": true }