Connect API Catalog///
- API Documentation
Creditsafe Connect
- Create Monitoring Portfolio
List All Portfolios
Create Monitoring Portfol...
This endpoint to create a new Portfolio based on the supplied criteria.
A portfolio can contain any number of companies that you wish to monitor changes to. The only required Body parameter is "name" for Connect users.
Security
bearerToken
The subject of the email notification.
Example:"Creditsafe Monitoring Notification on portfolio {{portfolioName}}"
- Sandbox serverhttps://connect.sandbox.creditsafe.com/v1/monitoring/portfolios
- Production serverhttps://connect.creditsafe.com/v1/monitoring/portfolios
curl -i -X POST \
https://connect.sandbox.creditsafe.com/v1/monitoring/portfolios \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"name": "Test Portfolio",
"isDefault": false,
"emails": [
{
"firstName": "John",
"lastName": "Doe",
"emailAddress": "john.doe@creditsafe.com"
}
],
"emailSubject": "Creditsafe Monitoring Notification on portfolio {{portfolioName}}",
"emailLanguage": "en",
"frequency": "1"
}'A unique ID assigned to this request.
Example:"14cc64a0-c108-11ea-b9af-06bcc69a383e"
Response
{ "correlationId": "14cc64a0-c108-11ea-b9af-06bcc69a383e", "portfolioId": 131318, "name": "My New Portfolio", "isDefault": false }