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 |
---|---|---|---|
name | false | String | Name of the customer |
true | Valid email ID of the customer | ||
profile_picture_url | false | String | URL of the profile picture of the customer. Supports PNG, JPG, JPEG and GIF formats. |
labels | false | Array | Array of labels to be added to the customer. |
starred | false | Boolean | Set 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
}