{ "opencollection": "1.0.0", "info": { "name": "Certifyos Tenant Specialty API", "version": "1.0.0" }, "items": [ { "info": { "name": "Tenant Specialty", "type": "folder" }, "items": [ { "info": { "name": "Get all tenant specialties", "type": "http" }, "http": { "method": "GET", "url": "http://localhost:9000/tenant-specialties", "headers": [ { "name": "tenant-id", "value": "" } ], "params": [ { "name": "name", "value": "Cardiology", "type": "query", "description": "Filter tenant specialties by name" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Retrieves a list of all tenant specialties with optional filtering by name" }, { "info": { "name": "Create a new tenant specialty", "type": "http" }, "http": { "method": "POST", "url": "http://localhost:9000/tenant-specialties", "headers": [ { "name": "tenant-id", "value": "" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Creates a new tenant specialty" }, { "info": { "name": "Get tenant specialties by classification source and category", "type": "http" }, "http": { "method": "GET", "url": "http://localhost:9000/tenant-specialties/by-classification", "headers": [ { "name": "tenant-id", "value": "" } ], "params": [ { "name": "category", "value": "Individual", "type": "query", "description": "Category to filter by" }, { "name": "classificationSource", "value": "nucc", "type": "query", "description": "Classification source to filter by" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Retrieves tenant specialties filtered by classification source and category" }, { "info": { "name": "Get tenant specialty by ID", "type": "http" }, "http": { "method": "GET", "url": "http://localhost:9000/tenant-specialties/:id", "headers": [ { "name": "tenant-id", "value": "" } ], "params": [ { "name": "id", "value": "", "type": "path", "description": "ID of the tenant specialty to retrieve" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Retrieves a single tenant specialty by its ID" }, { "info": { "name": "Update a tenant specialty", "type": "http" }, "http": { "method": "PUT", "url": "http://localhost:9000/tenant-specialties/:id", "headers": [ { "name": "tenant-id", "value": "" } ], "params": [ { "name": "id", "value": "", "type": "path", "description": "ID of the tenant specialty to update" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Updates an existing tenant specialty" }, { "info": { "name": "Delete a tenant specialty", "type": "http" }, "http": { "method": "DELETE", "url": "http://localhost:9000/tenant-specialties/:id", "headers": [ { "name": "tenant-id", "value": "" } ], "params": [ { "name": "id", "value": "", "type": "path", "description": "ID of the tenant specialty to delete" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Deletes a tenant specialty by ID" } ] } ], "bundled": true }