Required role: | superadmin |
GET | /superadmin/apikey/{CompanyId} | Get an api key for the customer. |
---|
<?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};
class ApiKeySuperAdminResponse implements JsonSerializable
{
public function __construct(
// @ApiMember(IsRequired=true)
/** @var string */
public string $CompanyId='',
// @ApiMember(IsRequired=true)
/** @var string */
public string $ApiKey='',
// @ApiMember(IsRequired=true)
/** @var string */
public string $Notes='',
// @ApiMember(IsRequired=true)
/** @var string */
public string $InternalNotes=''
) {
}
/** @throws Exception */
public function fromMap($o): void {
if (isset($o['CompanyId'])) $this->CompanyId = $o['CompanyId'];
if (isset($o['ApiKey'])) $this->ApiKey = $o['ApiKey'];
if (isset($o['Notes'])) $this->Notes = $o['Notes'];
if (isset($o['InternalNotes'])) $this->InternalNotes = $o['InternalNotes'];
}
/** @throws Exception */
public function jsonSerialize(): mixed
{
$o = [];
if (isset($this->CompanyId)) $o['CompanyId'] = $this->CompanyId;
if (isset($this->ApiKey)) $o['ApiKey'] = $this->ApiKey;
if (isset($this->Notes)) $o['Notes'] = $this->Notes;
if (isset($this->InternalNotes)) $o['InternalNotes'] = $this->InternalNotes;
return empty($o) ? new class(){} : $o;
}
}
// @ApiResponse(Description="", StatusCode=400)
// @ApiResponse(Description="Returned if the current user is not allowed to perform the action", StatusCode=401)
class GetApiKeySuperAdminUser implements ICompany, JsonSerializable
{
public function __construct(
/** @description Enter the companyId for the customer */
// @ApiMember(Description="Enter the companyId for the customer", IsRequired=true, ParameterType="query")
/** @var string */
public string $CompanyId=''
) {
}
/** @throws Exception */
public function fromMap($o): void {
if (isset($o['CompanyId'])) $this->CompanyId = $o['CompanyId'];
}
/** @throws Exception */
public function jsonSerialize(): mixed
{
$o = [];
if (isset($this->CompanyId)) $o['CompanyId'] = $this->CompanyId;
return empty($o) ? new class(){} : $o;
}
}
PHP GetApiKeySuperAdminUser 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/apikey/{CompanyId} HTTP/1.1 Host: testapi.bokamera.se Accept: text/jsv
HTTP/1.1 200 OK Content-Type: text/jsv Content-Length: length { Notes: String, InternalNotes: String }