Set custom fields
This endpoint is used to set custom fields for the user. The custom fields are used to store additional information about the user. Only fields that have not previously been set can be set.
Body
Required
-
custom_fields
array[object] Required
PATCH
/v1/client/auth/custom-fields
curl \
--request PATCH 'https://api.bitlabs.ai/v1/client/auth/custom-fields' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{"custom_fields":[{"id":"string","value":"string"}]}'
Request examples
{
"custom_fields": [
{
"id": "string",
"value": "string"
}
]
}
Response examples (200)
{
"data": {}
}
Response examples (406)
{
"error": {
"details": {
"msg": "vpn detected",
"http": "406 Not Acceptable"
}
}
}