Skip to main content
GET
/
api
/
public
/
v1
/
filters
/
crm-fields
List CRM custom fields
import requests

url = "https://app.oneperfectslice.ai/api/public/v1/filters/crm-fields"

headers = {"Authorization": "Bearer <token>"}

response = requests.get(url, headers=headers)

print(response.text)
{
  "data": {
    "fields": [
      {
        "entityType": "deal",
        "fieldName": "industry",
        "fieldLabel": "Industry",
        "fieldType": "string",
        "isSystem": false,
        "options": [
          {
            "label": "Law Firm",
            "value": "law_firm"
          }
        ]
      }
    ]
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.oneperfectslice.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
default:sk_your_api_key
required

API key with sk_ prefix. Create one in Org Settings → API Keys.

Response

Org-scoped CRM field filter configuration

data
object
required