Returns a signed URL for downloading the PSV (Primary Source Verification) PDF for the specified provider. The signed URL is time-limited and allows secure access to the PSV document.
CertifyOS API
/- Modify groups associated to a provider
Create Provider
Retrieve all available information for a provider.
Save attested provider data
Fetch attested provider data
Upload Provider Attested Data Document
Retrieve signed url of a given supporting-document id.
Lists all provider survey responses in an organization
Lists all provider email outreaches in an organization
Retrieve CAQH data for a provider
Creates a credentialing workflow for the provider.
Retrieve signed URL for provider PSV PDF
Retrieve groups/ org-entities for a provider.
Retrieve credentialing workflow timelines for a provider
Create Bulk Provider Professional IDs
Get list of provider specialties
Create provider specialties
Update provider specialty
Delete provider specialty
Modify groups associated...
CertifyOS API
- Mock serverhttps://docs.certifyos.com/_mock/reference/application/api/v2/provider/{providerId}/psv/signed-url
- Productionhttps://ng-api-production.certifyos.com/v2/provider/{providerId}/psv/signed-url
- Staging (Test Data)https://ng-api-stg.certifyos.com/v2/provider/{providerId}/psv/signed-url
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.certifyos.com/_mock/reference/application/api/v2/provider/{providerId}/psv/signed-url' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'organization-id: string'Response
application/json
{ "signedUrl": "https://storage.googleapis.com/bucket/psv.pdf?X-Goog-Signature=..." }
- Mock serverhttps://docs.certifyos.com/_mock/reference/application/api/v2/provider/{providerId}/groups
- Productionhttps://ng-api-production.certifyos.com/v2/provider/{providerId}/groups
- Staging (Test Data)https://ng-api-stg.certifyos.com/v2/provider/{providerId}/groups
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PUT \
'https://docs.certifyos.com/_mock/reference/application/api/v2/provider/{providerId}/groups' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-H 'organization-id: string' \
-d '[
{
"group_name": "string",
"group_npi": "2345678901",
"group_tin": "123456789",
"location_name": "string",
"external_group_id": "string"
}
]'- Mock serverhttps://docs.certifyos.com/_mock/reference/application/api/v2/provider/{providerId}/groups
- Productionhttps://ng-api-production.certifyos.com/v2/provider/{providerId}/groups
- Staging (Test Data)https://ng-api-stg.certifyos.com/v2/provider/{providerId}/groups
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.certifyos.com/_mock/reference/application/api/v2/provider/{providerId}/groups' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'organization-id: string'Response
application/json
[ { "group_name": "string", "group_npi": "2345678901", "group_tin": "123456789", "external_group_id": "string", "id": "string" } ]