Skip to content

Instance Management

Endpoints for managing decision engine instances, including retrieval, and updating.

Return All Available Instances

Request

Returns all instances (Decision Trees) a user has permission to access.

Security
bearerToken
Query
customerIdinteger

The unique identifier of the customer. If used it will return all the Decision Trees associated to that customer.

userIdinteger

The unique identifier of the user. If used it will return all the Decision Trees that user has access to.

curl -i -X GET \
  'https://connect.sandbox.creditsafe.com/v1/decisionEngine/instances?customerId=0&userId=0' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'

Responses

Bodyapplication/json
correlationIdstring

A unique ID assigned to this request.

instancesArray of objects

The list of decision trees and GUID's available to user.

Response
{ "correlationId": "string", "instances": [ {} ] }