Skip to main content

Customer Details

View detailed information for a customer

HTTP Request

[GET] /api/v6/accounts/{id}

Query Parameters

Fields

FieldsTypeDescription
idintegerIdentifier
account_codestringCustomer code
account_namestringCustomer name
descriptionstringDescription
billing_address_streetstringAddress
phone_officenumericCustomer phone number
emailstringCustomer email
mgr_emailstringManager email
mgr_display_namestringManager name
websitestringWebsite
logostringCustomer photo
birthdaytimestampBirthday
sic_codestringTax code
created_attimestampCreation date
account_typestringCustomer type
account_sourcestringCustomer source
relation_idintegerRelationship identifier
relation_namestringRelationship name
genderstringGender
total_revenuefloatTotal revenue
contactsarrayContacts
account_managerintegerCustomer manager
accessible_user_idsarrayRelated users
custom_fieldsobjectDefined fields

Example

HTTP Request

GET api/v6/accounts/4?fields=account_name,custom_fields HTTP/1.1
Host: example.getflycrm.com
Content-Type: application/json

Status

200 OK

Response

{
"id": 4,
"account_name": "TEST ACCOUNT API",
"account_manager": 123,
"accessible_user_ids": [1,2,3,4],
"custom_fields": {
"field_1": 111
}
}