Retrieve a specific custom field’s details by its name using the AutoSend API.
curl --request GET \
--url https://api.autosend.com/v1/custom-fields/fieldName/planTier \
--header 'Authorization: Bearer <token>'
{
"success": true,
"message": "Custom field retrieved successfully",
"data": {
"id": "69c258bae3e715c0521153fb",
"fieldName": "isVerified",
"fieldType": "boolean",
"createdAt": "2026-03-24T09:26:18.826Z",
"updatedAt": "2026-03-24T09:26:18.826Z"
}
}
curl --request GET \
--url https://api.autosend.com/v1/custom-fields/fieldName/planTier \
--header 'Authorization: Bearer <token>'
{
"success": true,
"message": "Custom field retrieved successfully",
"data": {
"id": "69c258bae3e715c0521153fb",
"fieldName": "isVerified",
"fieldType": "boolean",
"createdAt": "2026-03-24T09:26:18.826Z",
"updatedAt": "2026-03-24T09:26:18.826Z"
}
}
<token>, where <token> is your auth token.fieldName of the custom field to retrieve.Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The fieldName of the custom field to retrieve.
"planTier"
curl --request GET \
--url https://api.autosend.com/v1/custom-fields/fieldName/planTier \
--header 'Authorization: Bearer <token>'
{
"success": true,
"message": "Custom field retrieved successfully",
"data": {
"id": "69c258bae3e715c0521153fb",
"fieldName": "isVerified",
"fieldType": "boolean",
"createdAt": "2026-03-24T09:26:18.826Z",
"updatedAt": "2026-03-24T09:26:18.826Z"
}
}