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

# Slack: Actions/api Call

> Call a native Slack Web API method with passthrough arguments, including new methods or fields absent from named tools. Uses the workspace connection.

Call a native Slack Web API method with passthrough arguments, including new methods or fields absent from named tools.

<Info>
  Tool ID: `slack_api_call`
</Info>

## Run this action

This action has conditional or dynamic input fields that cannot be represented by a reliable static example.

Inspect the live contract before executing it:

```bash theme={null}
deepline tools get slack_api_call --json
```

## Example response

The static output schema is not detailed enough to generate a reliable example. Use `deepline tools get slack_api_call --json` for the complete live contract.

## Input reference

Call a standard JSON-response Slack Web API method using native arguments. This does not install interaction callbacks or wait for a human action.

| Name             | Type     | Required | Default | Details                                                                                                                                                                                                  |
| ---------------- | -------- | -------- | ------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `payload.method` | `string` | Yes      | —       | Native Slack Web API method name, such as chat.update. New method names are accepted; URLs and paths are not. Pattern: `^[a-z][a-zA-Z0-9]*(\.[a-z][a-zA-Z0-9]*)+$`.                                      |
| `payload.params` | `record` | Yes      | —       | Native Slack method arguments, including new fields and Block Kit content. Forwarded without a local Slack field allowlist. Do not supply token; the workspace Slack connection supplies authentication. |

<details>
  <summary>Show raw input schema</summary>

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Call a standard JSON-response Slack Web API method using native arguments. This does not install interaction callbacks or wait for a human action.",
    "properties": {
      "method": {
        "type": "string",
        "description": "Native Slack Web API method name, such as chat.update. New method names are accepted; URLs and paths are not.",
        "pattern": "^[a-z][a-zA-Z0-9]*(\\.[a-z][a-zA-Z0-9]*)+$"
      },
      "params": {
        "type": "object",
        "description": "Native Slack method arguments, including new fields and Block Kit content. Forwarded without a local Slack field allowlist. Do not supply token; the workspace Slack connection supplies authentication.",
        "additionalProperties": {}
      }
    },
    "required": [
      "method",
      "params"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

Standard tool result payload.

| Name          | Type     | Required | Default | Details                       |
| ------------- | -------- | -------- | ------- | ----------------------------- |
| `result.data` | `record` | Yes      | —       | Provider response payload.    |
| `result.meta` | `record` | No       | —       | Additional response metadata. |

<details>
  <summary>Show raw output schema</summary>

  ### Output JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Standard tool result payload.",
    "properties": {
      "data": {
        "type": "object",
        "description": "Provider response payload.",
        "additionalProperties": {}
      },
      "meta": {
        "type": "object",
        "description": "Additional response metadata.",
        "additionalProperties": {}
      }
    },
    "required": [
      "data"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Deepline cost

* Pricing model: `fixed` (per call).
* Estimated Deepline credits: `0` per pricing unit.
* Provider-native pricing may still exist outside Deepline credit billing.

## Related documentation

* [Slack provider guide](/docs/providers/slack/guide)
* [SDK V2 quickstart](/docs/sdk-v2/quickstart)
* [SDK reference](/docs/sdk-v2/sdk-reference)
* [Run tools across a CSV](/docs/sdk-v2/batch-csv)
