Skip to content

Prospect API (1)

Automates process of creating organizations for new business prospects.

Download OpenAPI description
Languages
Servers
Mock server

https://idp.cdq.com/_mock/apis/prospect-api/api-v1/

Production SOAP

https://prospect-api.reverse-proxy.prod.k8s.production.cdq-cloud-engine.com/soap/v1/

Production

https://prospect-api.reverse-proxy.prod.k8s.production.cdq-cloud-engine.com/

workflows

Workflows.

Trial Organization Workflow

Operations

LinkedIn

Operations

Prospects

Operations

Create a new prospect

Request

Creates a new prospect via email registration. This endpoint registers a new user with email and password, creates an organization, and sets up a trial environment with all necessary resources.

Bodyapplication/jsonrequired
emailstring(UserEmail)required

Email address of a user.

Example: "info@cdq.ch"
passwordstring[ 12 .. 128 ] charactersrequired

Password (minimum 12 characters)

Example: "SecurePassword123!"
firstNamestringrequired

First name of the user

Example: "John"
lastNamestringrequired

Last name of the user

Example: "Doe"
organizationNamestring

Name of the organization (optional, will be auto-generated from email if not provided)

Example: "Org AG"
phoneNumberstring

Phone number (optional)

Example: "+1234567890"
curl -i -X POST \
  https://idp.cdq.com/_mock/apis/prospect-api/api-v1/prospects \
  -H 'Content-Type: application/json' \
  -d '{
    "email": "info@cdq.ch",
    "password": "SecurePassword123!",
    "firstName": "John",
    "lastName": "Doe",
    "organizationName": "Org AG",
    "phoneNumber": "+1234567890"
  }'

Responses

OK

Response
No content

Maintenance

Operations