Required role: | superadmin |
GET | /superadmin/company/inactive/report | Retrieves a report of inactive companies with their status. | This endpoint does not modify any data. |
---|
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 GetInactiveCompaniesReport
Public Overridable Property Skip As Nullable(Of Integer)
Public Overridable Property Take 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 GetInactiveCompaniesReport DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /superadmin/company/inactive/report HTTP/1.1 Host: testapi.bokamera.se Accept: text/jsv
HTTP/1.1 200 OK Content-Type: text/jsv Content-Length: length { ProcessedCompanies: [ { Action: ActivityReminder } ] }