{ "opencollection": "1.0.0", "info": { "name": "Certifyos Network API", "version": "1.0.0" }, "items": [ { "info": { "name": "Network", "type": "folder" }, "items": [ { "info": { "name": "Get all networks", "type": "http" }, "http": { "method": "GET", "url": "http://localhost:9000/networks", "headers": [ { "name": "tenant-id", "value": "" } ], "params": [ { "name": "page", "value": "", "type": "query", "description": "Page number for offset-based pagination (0-based index). Defaults to 0 if not specified." }, { "name": "size", "value": "", "type": "query", "description": "Number of items per page in offset-based pagination. Defaults to 10 if not specified." } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Returns a list of networks for the provided tenant. The networks are returned sorted by creation date, with the most recent networks appearing first." }, { "info": { "name": "Create a new network", "type": "http" }, "http": { "method": "POST", "url": "http://localhost:9000/networks", "headers": [ { "name": "tenant-id", "value": "" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Creates a new network with the provided details" }, { "info": { "name": "Update effective date of a practitioner in a group for a network", "type": "http" }, "http": { "method": "PUT", "url": "http://localhost:9000/networks/practitioners/effective-date", "headers": [ { "name": "tenant-id", "value": "" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Updates the effective date of a practitioner in a group for a network. This updates the effectiveDate in the TenantGroupPractitionerNetwork table." }, { "info": { "name": "Get a network by id", "type": "http" }, "http": { "method": "GET", "url": "http://localhost:9000/networks/:id", "headers": [ { "name": "tenant-id", "value": "" } ], "params": [ { "name": "id", "value": "1234567890", "type": "path", "description": "Network ID" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Get a network by id" }, { "info": { "name": "Update a new network", "type": "http" }, "http": { "method": "PUT", "url": "http://localhost:9000/networks/:id", "headers": [ { "name": "tenant-id", "value": "" } ], "params": [ { "name": "id", "value": "1234567890", "type": "path", "description": "Network ID" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Updates a new network with the provided details" }, { "info": { "name": "Delete a new network", "type": "http" }, "http": { "method": "DELETE", "url": "http://localhost:9000/networks/:id", "headers": [ { "name": "tenant-id", "value": "" } ], "params": [ { "name": "id", "value": "1234567890", "type": "path", "description": "Network ID" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Deletes a network with the given id" }, { "info": { "name": "Update practitioner specialty effective/termination dates in group for network", "type": "http" }, "http": { "method": "PUT", "url": "http://localhost:9000/networks/:networkId/groups/:groupId/practitioners/:practitionerId/specialties/:specialtyId/dates", "headers": [ { "name": "tenant-id", "value": "" } ], "params": [ { "name": "groupId", "value": "", "type": "path", "description": "Group ID (certify/core group id)" }, { "name": "networkId", "value": "", "type": "path", "description": "Network ID (certify/core network id)" }, { "name": "practitionerId", "value": "", "type": "path", "description": "Practitioner ID" }, { "name": "specialtyId", "value": "", "type": "path", "description": "Specialty ID (certify/core specialty id)" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Updates the effectiveDate and/or terminationDate in the TenantGroupPractitionerNetworkSpecialty relationship identified by networkId, groupId, practitionerId, and specialtyId." } ] } ], "bundled": true }