### Creating Account Response Body (v2) - JSON Source: https://context7.com/semify-llc/api-documentation/llms.txt This JSON object illustrates the expected response after successfully creating an account via the Semify v2 API. It returns the newly generated `account_id` and `campaign_id` within the `data` field, indicates success with `error: false`, and provides pagination details and success messages. The `account_id` and `campaign_id` are key identifiers for subsequent operations. ```JSON { "data": { "account_id": "123456", "campaign_id": "987654" }, "error": false, "pagination": { "totalPages": 1, "maxRows": 0, "offset": 0, "page": 1, "totalRecords": 1 }, "messages": ["Account created successfully."] } ``` -------------------------------- ### Creating Account Request Body (v2) - JSON Source: https://context7.com/semify-llc/api-documentation/llms.txt This JSON object represents the request body required to create a new account using the Semify v2 API. It includes essential account details such as name, contact information, address, website URL, external identifiers, and optional attributes. The `external_account_identifier` and manager fields are crucial for integration with external systems. ```JSON { "account_name": "Semify", "phone": "3361231234", "email": "business@business.com", "first_name": "First", "last_name": "Last", "address_1": "2307 West Cone Blvd.", "address_2": "Suite 200", "city": "Greensboro", "state": "NC", "postal": "27410", "country_code": "US", "website_url": "https://www.semify.com", "external_account_identifier": "TestAccount5555", "external_account_manager": { "name": "Fnu Lnu", "email": "fnulnu@yourdomain.com" }, "external_campaign_manager": { "name": "Fnu Lnu", "email": "fnulnu@yourdomain.com" }, "attributes": [ { "field_name": "Approval Type", "field_value": "Full" }, { "field_name": "Another Field", "field_value": "Partial" } ] } ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.