BokaMera.API.Host

<back to all web services

DeleteInactiveCompaniesRequest

The following routes are available for this service:
POST/superadmin/company/inactiveEvaluates inactive companies and performs deletion or notification based on predefined criteria.
<?php namespace dtos;

use DateTime;
use Exception;
use DateInterval;
use JsonSerializable;
use ServiceStack\{IReturn,IReturnVoid,IGet,IPost,IPut,IDelete,IPatch,IMeta,IHasSessionId,IHasBearerToken,IHasVersion};
use ServiceStack\{ICrud,ICreateDb,IUpdateDb,IPatchDb,IDeleteDb,ISaveDb,AuditBase,QueryDb,QueryDb2,QueryData,QueryData2,QueryResponse};
use ServiceStack\{ResponseStatus,ResponseError,EmptyResponse,IdResponse,ArrayList,KeyValuePair2,StringResponse,StringsResponse,Tuple2,Tuple3,ByteArray};
use ServiceStack\{JsonConverters,Returns,TypeContext};


enum InactivityAction : string
{
    case ActivityReminder = 'ActivityReminder';
    case FinalWarning = 'FinalWarning';
    case Delete = 'Delete';
}

class InactiveCompanyResult implements JsonSerializable
{
    public function __construct(
        /** @var string */
        public string $CompanyId='',
        /** @var DateTime */
        public DateTime $LastActivityDate=new DateTime(),
        /** @var DateTime */
        public DateTime $LastActivityNotificationDate=new DateTime(),
        /** @var DateTime */
        public DateTime $DeletionTime=new DateTime(),
        /** @var InactivityAction|null */
        public ?InactivityAction $Action=null
    ) {
    }

    /** @throws Exception */
    public function fromMap($o): void {
        if (isset($o['CompanyId'])) $this->CompanyId = $o['CompanyId'];
        if (isset($o['LastActivityDate'])) $this->LastActivityDate = JsonConverters::from('DateTime', $o['LastActivityDate']);
        if (isset($o['LastActivityNotificationDate'])) $this->LastActivityNotificationDate = JsonConverters::from('DateTime', $o['LastActivityNotificationDate']);
        if (isset($o['DeletionTime'])) $this->DeletionTime = JsonConverters::from('DateTime', $o['DeletionTime']);
        if (isset($o['Action'])) $this->Action = JsonConverters::from('InactivityAction', $o['Action']);
    }
    
    /** @throws Exception */
    public function jsonSerialize(): mixed
    {
        $o = [];
        if (isset($this->CompanyId)) $o['CompanyId'] = $this->CompanyId;
        if (isset($this->LastActivityDate)) $o['LastActivityDate'] = JsonConverters::to('DateTime', $this->LastActivityDate);
        if (isset($this->LastActivityNotificationDate)) $o['LastActivityNotificationDate'] = JsonConverters::to('DateTime', $this->LastActivityNotificationDate);
        if (isset($this->DeletionTime)) $o['DeletionTime'] = JsonConverters::to('DateTime', $this->DeletionTime);
        if (isset($this->Action)) $o['Action'] = JsonConverters::to('InactivityAction', $this->Action);
        return empty($o) ? new class(){} : $o;
    }
}

class InactiveCompaniesResponse implements JsonSerializable
{
    public function __construct(
        /** @var array<InactiveCompanyResult>|null */
        public ?array $ProcessedCompanies=null
    ) {
    }

    /** @throws Exception */
    public function fromMap($o): void {
        if (isset($o['ProcessedCompanies'])) $this->ProcessedCompanies = JsonConverters::fromArray('InactiveCompanyResult', $o['ProcessedCompanies']);
    }
    
    /** @throws Exception */
    public function jsonSerialize(): mixed
    {
        $o = [];
        if (isset($this->ProcessedCompanies)) $o['ProcessedCompanies'] = JsonConverters::toArray('InactiveCompanyResult', $this->ProcessedCompanies);
        return empty($o) ? new class(){} : $o;
    }
}

class DeleteInactiveCompaniesRequest implements JsonSerializable
{
    public function __construct(
        /** @description Number of companies to process for deletion or notification in each run. */
        // @ApiMember(Description="Number of companies to process for deletion or notification in each run.", IsRequired=true)
        /** @var int */
        public int $BatchLimit=0
    ) {
    }

    /** @throws Exception */
    public function fromMap($o): void {
        if (isset($o['BatchLimit'])) $this->BatchLimit = $o['BatchLimit'];
    }
    
    /** @throws Exception */
    public function jsonSerialize(): mixed
    {
        $o = [];
        if (isset($this->BatchLimit)) $o['BatchLimit'] = $this->BatchLimit;
        return empty($o) ? new class(){} : $o;
    }
}

PHP DeleteInactiveCompaniesRequest DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml

HTTP + XML

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: application/xml
Content-Type: application/xml
Content-Length: length

<DeleteInactiveCompaniesRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BokaMera.API.ServiceModel.Dtos">
  <BatchLimit>0</BatchLimit>
</DeleteInactiveCompaniesRequest>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length

<InactiveCompaniesResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BokaMera.API.ServiceModel.Dtos">
  <ProcessedCompanies>
    <InactiveCompanyResult>
      <Action>ActivityReminder</Action>
      <CompanyId>00000000-0000-0000-0000-000000000000</CompanyId>
      <DeletionTime>0001-01-01T00:00:00</DeletionTime>
      <LastActivityDate>0001-01-01T00:00:00</LastActivityDate>
      <LastActivityNotificationDate>0001-01-01T00:00:00</LastActivityNotificationDate>
    </InactiveCompanyResult>
  </ProcessedCompanies>
</InactiveCompaniesResponse>