> ## Documentation Index
> Fetch the complete documentation index at: https://docs.morf.health/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Create Or Update Account

> Documentation for the Create Or Update Account action for Active Campaign

<img src="https://mintcdn.com/morfhealth/EU2WCxuXGIUQcziR/images/active_campaign.svg?fit=max&auto=format&n=EU2WCxuXGIUQcziR&q=85&s=c21732e6d31462ae53f8b0d3216b0236" alt="images/active_campaign.svg" width="40" height="40" data-path="images/active_campaign.svg" />

# Parameters

<ResponseField name="Action" type="Parameters">
  <Expandable title="parameters" defaultOpen="true">
    <ResponseField name="Name" type="string" required>
      This field maps to the destination API `name` field.
    </ResponseField>

    <ResponseField name="Account URL" type="string">
      This field maps to the destination API `accountUrl` field.
    </ResponseField>

    <ResponseField name="Owner" type="string (User)" required>
      This field maps to the destination API `owner` field.
    </ResponseField>
  </Expandable>
</ResponseField>

<RequestExample>
  ```json Result Object Example theme={null}
  {
    "$result_object_key": {
      "account_url": "https://morf.health",
      "id": "10",
      "name": "Morf"
    }
  }
  ```
</RequestExample>

<ResponseExample>
  ```json Result Object Description theme={null}
  {
    "$result_object_key": {
      "account_url": "Account URL",
      "id": "ID",
      "name": "Name"
    }
  }
  ```
</ResponseExample>

### Result Object Field Details

You can use the result of the action's data as inputs to downstream workflow actions.

Each fetch action requires a result object key to be specified which will nest the action's result data inside the downstream data context in the Workflow.

Here we demonstrate how to refer to this data using the prefix `$result_object_key`.

<ResponseField name="Account" type="Fetch Action Response Object">
  <Expandable title="fields" defaultOpen="true">
    <ResponseField name="id" type="string" required>
      ID

      ```json CEL theme={null}
      $result_object_key.id
      ```

      ```json Example theme={null}
      "10"
      ```
    </ResponseField>

    <ResponseField name="name" type="string" required>
      Name

      ```json CEL theme={null}
      $result_object_key.name
      ```

      ```json Example theme={null}
      "Morf"
      ```
    </ResponseField>

    <ResponseField name="account_url" type="string">
      Account URL

      ```json CEL theme={null}
      $result_object_key.account_url
      ```

      ```json Example theme={null}
      "https://morf.health"
      ```
    </ResponseField>
  </Expandable>
</ResponseField>
