Acrewity Integration Guide

Step-by-step integration guides for popular automation platforms and development tools.

Quick Start

All Acrewity services use:

Integration Platforms

n8n Integration

Recommended: Use the Acrewity Community Node

The easiest way to integrate with n8n is using our official community node:

  1. In n8n, go to Settings → Community Nodes
  2. Search for n8n-nodes-acrewity and install
  3. Add your API key in the credentials
  4. Drag the Acrewity node into your workflow

The community node provides:

Alternative: HTTP Request Node

You can also use n8n's HTTP Request node:

Zapier Integration

Connect Acrewity with 5,000+ apps using Zapier's Webhooks by Zapier action:

Make.com Integration

Use Make.com's HTTP module to integrate:

Custom Applications

Build custom integrations using standard HTTP requests:

cURL Example:

curl -X POST https://www.acrewity.com/api/services/execute
  -H "Authorization: Bearer YOUR_API_KEY"
  -H "Content-Type: application/json"
  -d '{"service": "email-access", "operation": "send_email", "parameters": {"to": "user@example.com", "subject": "Test", "text": "Hello"}}'

JavaScript Example:

const response = await fetch('https://www.acrewity.com/api/services/execute', {
  method: 'POST',
  headers: {
    'Authorization': 'Bearer YOUR_API_KEY',
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    serviceId: 'email-access',
    operation: 'send_email',
    parameters: {
      to: 'user@example.com',
      subject: 'Test',
      text: 'Hello'
    }
  })
});
const data = await response.json();

Security Best Practices

Support

Next Steps