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