Retrieve a card

Retrieve a single card.

These endpoints are in beta testing. Some features may not work as documented or may behave unexpectedly.

Get single card

GET https://{{account_id}}.acquire.io/api/v1/crm/view/{{cardId}}

Retrieve data for a single card. The cardId must be passed in to the endpoint as a path parameter.

Query Parameters

NameTypeDescription

cardId

integer

Id of the card.

Headers

NameTypeDescription

Authorization

string

Bearer {{api_key}}

{
    "data": {
        "id": 13,
        "title": "this is new view",
        "contactId": 96,
        "userId": 24,
        "view": {
            "type": "ui_block",
            "config": {
                "canvas": {
                    "content": {
                        "components": [
                            {
                                "text": "hello acquire",
                                "type": "text",
                                "style": "heading"
                            },
                            {
                                "id": "my_input",
                                "type": "input",
                                "label": "my input box",
                                "style": "paragraph",
                                "value": "acquire"
                            }
                        ]
                    }
                }
            }
        },
        "meta": {
            "iconFont": "icon-ticket",
            "iconImageUrl": "https://acquire.io/wp-content/themes/acquire/assets/images/common/acq-footer-black-logo.svg"
        },
        "dateCreated": "2020-09-17T05:28:44.000Z"
    }
}

Last updated