Skip to main content
GET
/
custom-fields
curl --request GET \
  --url https://api.autosend.com/v1/custom-fields \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "Custom fields retrieved successfully",
  "data": {
    "customFields": [
      {
        "id": "69c258bae3e715c0521153fb",
        "fieldName": "isVerified",
        "fieldType": "boolean",
        "createdAt": "2026-03-24T09:26:18.826Z",
        "updatedAt": "2026-03-24T09:26:18.826Z"
      },
      {
        "id": "6960953e729f65f154369408",
        "fieldName": "company",
        "fieldType": "string",
        "createdAt": "2026-01-09T05:42:22.171Z",
        "updatedAt": "2026-01-09T05:42:22.171Z"
      },
      {
        "id": "69609535729f65f154369402",
        "fieldName": "industry",
        "fieldType": "string",
        "createdAt": "2026-01-09T05:42:13.892Z",
        "updatedAt": "2026-01-09T05:42:13.892Z"
      }
    ]
  }
}
curl --request GET \
  --url https://api.autosend.com/v1/custom-fields \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "Custom fields retrieved successfully",
  "data": {
    "customFields": [
      {
        "id": "69c258bae3e715c0521153fb",
        "fieldName": "isVerified",
        "fieldType": "boolean",
        "createdAt": "2026-03-24T09:26:18.826Z",
        "updatedAt": "2026-03-24T09:26:18.826Z"
      },
      {
        "id": "6960953e729f65f154369408",
        "fieldName": "company",
        "fieldType": "string",
        "createdAt": "2026-01-09T05:42:22.171Z",
        "updatedAt": "2026-01-09T05:42:22.171Z"
      },
      {
        "id": "69609535729f65f154369402",
        "fieldName": "industry",
        "fieldType": "string",
        "createdAt": "2026-01-09T05:42:13.892Z",
        "updatedAt": "2026-01-09T05:42:13.892Z"
      }
    ]
  }
}

Authorizations

Authorizations
string | header
required
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

includeReservedFields
boolean
Whether to include built-in reserved fields (email, firstName, lastName, createdAt, userId) in the response. Defaults to true.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

includeReservedFields
boolean
default:true

Whether to include the built-in reserved fields in the response. Defaults to true.

Response

Custom fields retrieved successfully

success
boolean
Example:

true

message
string
Example:

"Custom fields retrieved successfully"

data
object