| Requires any of the roles: | bookingsupplier-administrator-write, superadmin |
| DELETE | /articles/mappings/{Id} | Delete an external article mapping | Delete a mapping between a BokaMera article and an article in an external system |
|---|
<?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 ArticleMappingResponse implements JsonSerializable
{
public function __construct(
/** @description The company id */
// @ApiMember(Description="The company id")
/** @var string */
public string $CompanyId='',
/** @description The id */
// @ApiMember(Description="The id")
/** @var string */
public string $Id='',
/** @description The BokaMera article id */
// @ApiMember(Description="The BokaMera article id")
/** @var int */
public int $ArticleId=0,
/** @description The external reference */
// @ApiMember(Description="The external reference")
/** @var string */
public string $ExternalReference='',
/** @description The Reference Type */
// @ApiMember(Description="The Reference Type")
/** @var string */
public string $ReferenceType=''
) {
}
/** @throws Exception */
public function fromMap($o): void {
if (isset($o['CompanyId'])) $this->CompanyId = $o['CompanyId'];
if (isset($o['Id'])) $this->Id = $o['Id'];
if (isset($o['ArticleId'])) $this->ArticleId = $o['ArticleId'];
if (isset($o['ExternalReference'])) $this->ExternalReference = $o['ExternalReference'];
if (isset($o['ReferenceType'])) $this->ReferenceType = $o['ReferenceType'];
}
/** @throws Exception */
public function jsonSerialize(): mixed
{
$o = [];
if (isset($this->CompanyId)) $o['CompanyId'] = $this->CompanyId;
if (isset($this->Id)) $o['Id'] = $this->Id;
if (isset($this->ArticleId)) $o['ArticleId'] = $this->ArticleId;
if (isset($this->ExternalReference)) $o['ExternalReference'] = $this->ExternalReference;
if (isset($this->ReferenceType)) $o['ReferenceType'] = $this->ReferenceType;
return empty($o) ? new class(){} : $o;
}
}
// @ValidateRequest(Validator="IsAuthenticated")
class DeleteArticleMapping implements ICompany, JsonSerializable
{
public function __construct(
/** @description Company to delete the article mapping for */
// @ApiMember(Description="Company to delete the article mapping for")
/** @var string|null */
public ?string $CompanyId=null,
/** @description Id of the article mapping */
// @ApiMember(Description="Id of the article mapping", IsRequired=true, ParameterType="path")
/** @var string */
public string $Id=''
) {
}
/** @throws Exception */
public function fromMap($o): void {
if (isset($o['CompanyId'])) $this->CompanyId = $o['CompanyId'];
if (isset($o['Id'])) $this->Id = $o['Id'];
}
/** @throws Exception */
public function jsonSerialize(): mixed
{
$o = [];
if (isset($this->CompanyId)) $o['CompanyId'] = $this->CompanyId;
if (isset($this->Id)) $o['Id'] = $this->Id;
return empty($o) ? new class(){} : $o;
}
}
To override the Content-type in your clients, use the HTTP Accept Header, append the .csv suffix or ?format=csv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
DELETE /articles/mappings/{Id} HTTP/1.1
Host: testapi.bokamera.se
Accept: text/csv
HTTP/1.1 200 OK
Content-Type: text/csv
Content-Length: length
{"ArticleId":0,"ExternalReference":"String","ReferenceType":"String"}