Skip to content
Roberto Gramellini edited this page Apr 2, 2025 · 1 revision

Home

Welcome to the ExtensionAttributes.Automation wiki! 🚀

This repository contains automation scripts and tools for managing extension attributes.

Key Features

  • Automates the process of handling extension attributes.
  • Reduces manual effort and errors.
  • Provides a robust and scalable solution for large-scale management.

Installation

Prerequisites

  • .NET Core SDK
  • Git

Steps

  1. Clone the repository:
    git clone https://github.com/robgrame/ExtensionAttributes.Automation.git
    
    cd ExtensionAttributes.Automation
    
    dotnet restore
    dotnet build

Usage

# Usage

## Running the Automation Scripts
1. Execute the main script:
   ```bash
   dotnet run
   dotnet run -- list

API Documentation

# API Documentation

## Endpoints
- `GET /api/attributes` - Retrieves all extension attributes.
- `POST /api/attributes` - Creates a new extension attribute.

## Example Request
```http
POST /api/attributes
Content-Type: application/json

{
  "name": "NewAttribute",
  "type": "String"
}

Clone this wiki locally