-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Roberto Gramellini edited this page Apr 2, 2025
·
1 revision
Welcome to the ExtensionAttributes.Automation wiki! 🚀
This repository contains automation scripts and tools for managing extension attributes.
- Automates the process of handling extension attributes.
- Reduces manual effort and errors.
- Provides a robust and scalable solution for large-scale management.
- .NET Core SDK
- Git
- Clone the repository:
git clone https://github.com/robgrame/ExtensionAttributes.Automation.git cd ExtensionAttributes.Automation dotnet restore dotnet build
# Usage
## Running the Automation Scripts
1. Execute the main script:
```bash
dotnet run
dotnet run -- list# 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"
}