Customers

featureOS add customers API

Introduction

The featureOS add customers API allows you to add customers to your organization. You can also add customers' associated data.

POST https://api.featureos.app/api/v3/customers

Headers

Parameter Default Description
API-KEY-Generate from organization settings on the admin dashboard.
Authorization-Generate a unique JWT token specific to a user.

Query Parameters

Parameter Required Format Description
namefalseStringName of the customer
emailtrueEmailValid email ID of the customer
profile_picturefalseStringURL of the profile picture of the customer. Supports PNG, JPG, JPEG and GIF formats.
labelsfalseArrayArray of labels to be added to the customer.
starredfalseBooleanSet to true to star the customer.

Sample Response

{
  "id": 9116912321,
  "name": "Developer",
  "email": "[email protected]",
  "blocked": false,
  "post_count": 1,
  "votes_count": 1,
  "comments_count": 2,
  "member_since": "about 1 year",
  "created_at": "2021-06-29T11:19:08.000Z",
  "starred": true,
  "labels": ["DEV ", "RUBY"],
  "custom_fields": {},
  "profile_picture": null
}
Previous
List All Customers