You can use the Blue API to list custom fields in a specific project. Use the following query:
query ListCustomFields($projectId: ID!) {
customFields(projectId: $projectId) {
id
name
type
}
}
And the sample JSON response:
{
"data": {
"customFields": [
{
"id": "1",