Required role: | superadmin |
GET | /superadmin/company/inactive/report | Retrieves a report of inactive companies with their status. | This endpoint does not modify any data. |
---|
import Foundation
import ServiceStack
public class GetInactiveCompaniesReport : Codable
{
public var skip:Int?
public var take:Int?
required public init(){}
}
public class InactiveCompaniesResponse : Codable
{
public var processedCompanies:[InactiveCompanyResult] = []
required public init(){}
}
public class InactiveCompanyResult : Codable
{
public var companyId:String
public var lastActivityDate:Date
public var lastActivityNotificationDate:Date
public var deletionTime:Date
public var action:InactivityAction
required public init(){}
}
public enum InactivityAction : String, Codable
{
case ActivityReminder
case FinalWarning
case Delete
}
Swift GetInactiveCompaniesReport 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.
GET /superadmin/company/inactive/report HTTP/1.1 Host: testapi.bokamera.se Accept: text/jsonl
HTTP/1.1 200 OK Content-Type: text/jsonl Content-Length: length {"ProcessedCompanies":[{"Action":"ActivityReminder"}]}