POST | /superadmin/company/inactive | Evaluates inactive companies and performs deletion or notification based on predefined criteria. |
---|
Imports System
Imports System.Collections
Imports System.Collections.Generic
Imports System.Runtime.Serialization
Imports ServiceStack
Imports ServiceStack.DataAnnotations
Imports BokaMera.API.ServiceModel.Dtos
Imports BokaMera.API.ServiceModel.Helpers
Namespace Global
Namespace BokaMera.API.ServiceModel.Dtos
Public Partial Class DeleteInactiveCompaniesRequest
'''<Summary>
'''Number of companies to process for deletion or notification in each run.
'''</Summary>
<ApiMember(Description:="Number of companies to process for deletion or notification in each run.", IsRequired:=true)>
Public Overridable Property BatchLimit As Nullable(Of Integer)
End Class
Public Partial Class InactiveCompaniesResponse
Public Sub New()
ProcessedCompanies = New List(Of InactiveCompanyResult)
End Sub
Public Overridable Property ProcessedCompanies As List(Of InactiveCompanyResult)
End Class
Public Partial Class InactiveCompanyResult
Public Overridable Property CompanyId As Guid
Public Overridable Property LastActivityDate As Date
Public Overridable Property LastActivityNotificationDate As Date
Public Overridable Property DeletionTime As Date
Public Overridable Property Action As InactivityAction
End Class
End Namespace
Namespace BokaMera.API.ServiceModel.Helpers
Public Enum InactivityAction
ActivityReminder
FinalWarning
Delete
End Enum
End Namespace
End Namespace
VB.NET DeleteInactiveCompaniesRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .other suffix or ?format=other
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /superadmin/company/inactive HTTP/1.1
Host: testapi.bokamera.se
Accept: text/jsonl
Content-Type: text/jsonl
Content-Length: length
{"BatchLimit":0}
HTTP/1.1 200 OK Content-Type: text/jsonl Content-Length: length {"ProcessedCompanies":[{"Action":"ActivityReminder"}]}