{ "opencollection": "1.0.0", "info": { "name": "Certify API Layer Credentialing Outreach Resource API", "version": "1.0.0" }, "items": [ { "info": { "name": "Credentialing Outreach Resource", "type": "folder" }, "items": [ { "info": { "name": "Send a new credentialing outreach email", "type": "http" }, "http": { "method": "POST", "url": "http://localhost:9000/credentialing-outreaches", "headers": [ { "name": "tenant-id", "value": "" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Sends a credentialing outreach email to one or more email addresses, with optional CC, BCC, reply-to, and attachments. The 'toEmails' field accepts a list of email addresses directly." }, { "info": { "name": "Download email attachment", "type": "http" }, "http": { "method": "GET", "url": "http://localhost:9000/credentialing-outreaches/attachments/:attachmentId/download", "headers": [ { "name": "tenant-id", "value": "" } ], "params": [ { "name": "attachmentId", "value": "", "type": "path", "description": "Attachment ID" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Returns a presigned URL for downloading an email attachment from Google Cloud Storage. The URL expires after 1 hour." }, { "info": { "name": "List all outreaches for a workflow", "type": "http" }, "http": { "method": "GET", "url": "http://localhost:9000/credentialing-outreaches/workflow/:workflowId", "headers": [ { "name": "tenant-id", "value": "" } ], "params": [ { "name": "workflowId", "value": "", "type": "path", "description": "Workflow ID" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Returns a list of all outreaches associated with the specified credentialing workflow" }, { "info": { "name": "Get a single outreach by ID", "type": "http" }, "http": { "method": "GET", "url": "http://localhost:9000/credentialing-outreaches/:id", "headers": [ { "name": "tenant-id", "value": "" } ], "params": [ { "name": "id", "value": "", "type": "path", "description": "Outreach ID" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Returns the details of a specific outreach by its ID" }, { "info": { "name": "Get a single outreach with emails and replies", "type": "http" }, "http": { "method": "GET", "url": "http://localhost:9000/credentialing-outreaches/:id/details", "headers": [ { "name": "tenant-id", "value": "" } ], "params": [ { "name": "id", "value": "", "type": "path", "description": "Outreach ID" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Returns the details of a specific outreach including all its emails, their replies, and a timeline" } ] } ], "bundled": true }