Skip to main content
GET
/
contact-properties
/
name
/
{propertyName}
curl --request GET \
  --url https://api.autosend.com/v1/contact-properties/name/planTier \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "Contact property retrieved successfully",
  "data": {
    "id": "69c258bae3e715c0521153fb",
    "name": "isVerified",
    "type": "boolean",
    "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/contact-properties/name/planTier \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "Contact property retrieved successfully",
  "data": {
    "id": "69c258bae3e715c0521153fb",
    "name": "isVerified",
    "type": "boolean",
    "fieldName": "isVerified",
    "fieldType": "boolean",
    "createdAt": "2026-03-24T09:26:18.826Z",
    "updatedAt": "2026-03-24T09:26:18.826Z"
  }
}

Authorizations

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

Path Parameters

propertyName
string
required
The name of the contact property to retrieve.

Response

Contact property retrieved successfully
success
boolean
Indicates whether the request was successful.
message
string
Confirmation message.Example: "Contact property retrieved successfully"
data
object
The contact property object.