├── LICENSE.txt ├── README.md ├── assets ├── Hyper-V VM Sync.ps1 ├── TRMM-Network-Scanner ├── TRMM-create-update.ps1 ├── UniFi AP Sync.ps1 ├── create.ps1 ├── delete.ps1 ├── read.ps1 └── update.ps1 ├── certificates └── create.ps1 ├── clients ├── archive.ps1 ├── create.ps1 ├── unarchive.ps1 └── update.ps1 ├── contacts ├── archive.ps1 ├── create.ps1 ├── delete.ps1 ├── read.ps1 ├── unarchive.ps1 └── update.ps1 ├── credentials ├── create.ps1 ├── read.ps1 └── update.ps1 ├── documents ├── create.ps1 ├── read.ps1 └── update.ps1 ├── locations └── create.ps1 ├── networks └── read.ps1 ├── payments └── read.ps1 └── tickets ├── create.ps1 ├── read.ps1 └── resolve.ps1 /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itflow-org/itflow-api-powershell/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itflow-org/itflow-api-powershell/HEAD/README.md -------------------------------------------------------------------------------- /assets/Hyper-V VM Sync.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itflow-org/itflow-api-powershell/HEAD/assets/Hyper-V VM Sync.ps1 -------------------------------------------------------------------------------- /assets/TRMM-Network-Scanner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itflow-org/itflow-api-powershell/HEAD/assets/TRMM-Network-Scanner -------------------------------------------------------------------------------- /assets/TRMM-create-update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itflow-org/itflow-api-powershell/HEAD/assets/TRMM-create-update.ps1 -------------------------------------------------------------------------------- /assets/UniFi AP Sync.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itflow-org/itflow-api-powershell/HEAD/assets/UniFi AP Sync.ps1 -------------------------------------------------------------------------------- /assets/create.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itflow-org/itflow-api-powershell/HEAD/assets/create.ps1 -------------------------------------------------------------------------------- /assets/delete.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itflow-org/itflow-api-powershell/HEAD/assets/delete.ps1 -------------------------------------------------------------------------------- /assets/read.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itflow-org/itflow-api-powershell/HEAD/assets/read.ps1 -------------------------------------------------------------------------------- /assets/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itflow-org/itflow-api-powershell/HEAD/assets/update.ps1 -------------------------------------------------------------------------------- /certificates/create.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itflow-org/itflow-api-powershell/HEAD/certificates/create.ps1 -------------------------------------------------------------------------------- /clients/archive.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itflow-org/itflow-api-powershell/HEAD/clients/archive.ps1 -------------------------------------------------------------------------------- /clients/create.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itflow-org/itflow-api-powershell/HEAD/clients/create.ps1 -------------------------------------------------------------------------------- /clients/unarchive.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itflow-org/itflow-api-powershell/HEAD/clients/unarchive.ps1 -------------------------------------------------------------------------------- /clients/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itflow-org/itflow-api-powershell/HEAD/clients/update.ps1 -------------------------------------------------------------------------------- /contacts/archive.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itflow-org/itflow-api-powershell/HEAD/contacts/archive.ps1 -------------------------------------------------------------------------------- /contacts/create.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itflow-org/itflow-api-powershell/HEAD/contacts/create.ps1 -------------------------------------------------------------------------------- /contacts/delete.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itflow-org/itflow-api-powershell/HEAD/contacts/delete.ps1 -------------------------------------------------------------------------------- /contacts/read.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itflow-org/itflow-api-powershell/HEAD/contacts/read.ps1 -------------------------------------------------------------------------------- /contacts/unarchive.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itflow-org/itflow-api-powershell/HEAD/contacts/unarchive.ps1 -------------------------------------------------------------------------------- /contacts/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itflow-org/itflow-api-powershell/HEAD/contacts/update.ps1 -------------------------------------------------------------------------------- /credentials/create.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itflow-org/itflow-api-powershell/HEAD/credentials/create.ps1 -------------------------------------------------------------------------------- /credentials/read.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itflow-org/itflow-api-powershell/HEAD/credentials/read.ps1 -------------------------------------------------------------------------------- /credentials/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itflow-org/itflow-api-powershell/HEAD/credentials/update.ps1 -------------------------------------------------------------------------------- /documents/create.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itflow-org/itflow-api-powershell/HEAD/documents/create.ps1 -------------------------------------------------------------------------------- /documents/read.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itflow-org/itflow-api-powershell/HEAD/documents/read.ps1 -------------------------------------------------------------------------------- /documents/update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itflow-org/itflow-api-powershell/HEAD/documents/update.ps1 -------------------------------------------------------------------------------- /locations/create.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itflow-org/itflow-api-powershell/HEAD/locations/create.ps1 -------------------------------------------------------------------------------- /networks/read.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itflow-org/itflow-api-powershell/HEAD/networks/read.ps1 -------------------------------------------------------------------------------- /payments/read.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itflow-org/itflow-api-powershell/HEAD/payments/read.ps1 -------------------------------------------------------------------------------- /tickets/create.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itflow-org/itflow-api-powershell/HEAD/tickets/create.ps1 -------------------------------------------------------------------------------- /tickets/read.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itflow-org/itflow-api-powershell/HEAD/tickets/read.ps1 -------------------------------------------------------------------------------- /tickets/resolve.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itflow-org/itflow-api-powershell/HEAD/tickets/resolve.ps1 --------------------------------------------------------------------------------