Rapidpace CRM API Documentation

Rapidpace CRM is a flexible customer relationship management system that integrates with online platforms to gather end-user profile information and track user activities (events). The system allows clients to define custom fields and attributes for Profiles (users) and Events (activities) according to their needs.

Overview

This documentation covers the two primary REST APIs:

  • POST /profiles - For creating and updating user profiles
  • POST /events - For recording user activities

Authentication

All API requests require authentication using an API key.

Header Parameter Value Description
x-api-key {your-api-key} Your unique API key provided by your Account Manager

Base URL

Your Account Manager will provide you with the specific base URL for your integration.

Common Headers

The following headers are required for all API requests:

Header Value Required
Content-Type application/json Yes
Accept application/json Yes
x-api-key {your-api-key} Yes

Data Types

Rapidpace CRM supports the following data types for all fields:

Data Type Description Example
String Text value "John Doe"
Number Numeric value 42, 3.14
Boolean True/false value true, false
Date String ISO 8601 formatted date string "2024-10-28T00:10:02.471Z"
Array Collection of any supported types ["value1", "value2"], [1, 2, 3]

Note: No other data types are currently supported.

Close Modal