{ "opencollection": "1.0.0", "info": { "name": "Joblogic Assets Quotes API", "version": "v1" }, "request": { "auth": { "type": "oauth2", "flow": "client_credentials", "accessTokenUrl": "https://uatidentityserver.joblogic.com/connect/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "items": [ { "info": { "name": "Quotes", "type": "folder" }, "items": [ { "info": { "name": "Search quotes", "type": "http" }, "http": { "method": "POST", "url": "https://api.joblogic.com/api/v1/Quote/GetAll", "body": { "type": "json", "data": "{}" } }, "docs": "Searches quotes by keyword, tags, active status, and date." }, { "info": { "name": "Create a quote", "type": "http" }, "http": { "method": "POST", "url": "https://api.joblogic.com/api/v1/Quote", "body": { "type": "json", "data": "{}" } }, "docs": "Create a quote" }, { "info": { "name": "Update a quote", "type": "http" }, "http": { "method": "PUT", "url": "https://api.joblogic.com/api/v1/Quote", "params": [ { "name": "Id", "value": "", "type": "query", "description": "The resource's integer identifier." }, { "name": "tenantId", "value": "", "type": "query", "description": "The caller's Joblogic tenant identifier (GUID)." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update a quote" }, { "info": { "name": "Delete a quote", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.joblogic.com/api/v1/Quote", "params": [ { "name": "Id", "value": "", "type": "query", "description": "The resource's integer identifier." }, { "name": "tenantId", "value": "", "type": "query", "description": "The caller's Joblogic tenant identifier (GUID)." } ] }, "docs": "Delete a quote" }, { "info": { "name": "Get quote details", "type": "http" }, "http": { "method": "GET", "url": "https://api.joblogic.com/api/v1/Quote/GetById", "params": [ { "name": "Id", "value": "", "type": "query", "description": "The resource's integer identifier." }, { "name": "tenantId", "value": "", "type": "query", "description": "The caller's Joblogic tenant identifier (GUID)." }, { "name": "includeLines", "value": "", "type": "query" } ] }, "docs": "Get quote details" }, { "info": { "name": "Approve a quote", "type": "http" }, "http": { "method": "POST", "url": "https://api.joblogic.com/api/v1/Quote/Approve", "body": { "type": "json", "data": "{}" } }, "docs": "Approve a quote" } ] } ], "bundled": true }