POST | /webhooks/terms | Webhook from prismic |
---|
<?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 WebhookAgreements implements JsonSerializable
{
public function __construct(
/** @var string|null */
public ?string $id=null,
/** @var string|null */
public ?string $label=null,
/** @var array<string>|null */
public ?array $documents=null
) {
}
/** @throws Exception */
public function fromMap($o): void {
if (isset($o['id'])) $this->id = $o['id'];
if (isset($o['label'])) $this->label = $o['label'];
if (isset($o['documents'])) $this->documents = JsonConverters::fromArray('string', $o['documents']);
}
/** @throws Exception */
public function jsonSerialize(): mixed
{
$o = [];
if (isset($this->id)) $o['id'] = $this->id;
if (isset($this->label)) $o['label'] = $this->label;
if (isset($this->documents)) $o['documents'] = JsonConverters::toArray('string', $this->documents);
return empty($o) ? new class(){} : $o;
}
}
class Releases implements JsonSerializable
{
public function __construct(
/** @var array<WebhookAgreements>|null */
public ?array $deletion=null
) {
}
/** @throws Exception */
public function fromMap($o): void {
if (isset($o['deletion'])) $this->deletion = JsonConverters::fromArray('WebhookAgreements', $o['deletion']);
}
/** @throws Exception */
public function jsonSerialize(): mixed
{
$o = [];
if (isset($this->deletion)) $o['deletion'] = JsonConverters::toArray('WebhookAgreements', $this->deletion);
return empty($o) ? new class(){} : $o;
}
}
// @ApiResponse(Description="Returned if there is a validation error on the input parameters", StatusCode=400)
// @ApiResponse(Description="Returned if the current user is not allowed to perform the action", StatusCode=401)
class WebhookCreateAgreement implements JsonSerializable
{
public function __construct(
/** @var Releases|null */
public ?Releases $releases=null,
/** @var array<string>|null */
public ?array $documents=null,
/** @var string|null */
public ?string $secret=null
) {
}
/** @throws Exception */
public function fromMap($o): void {
if (isset($o['releases'])) $this->releases = JsonConverters::from('Releases', $o['releases']);
if (isset($o['documents'])) $this->documents = JsonConverters::fromArray('string', $o['documents']);
if (isset($o['secret'])) $this->secret = $o['secret'];
}
/** @throws Exception */
public function jsonSerialize(): mixed
{
$o = [];
if (isset($this->releases)) $o['releases'] = JsonConverters::to('Releases', $this->releases);
if (isset($this->documents)) $o['documents'] = JsonConverters::toArray('string', $this->documents);
if (isset($this->secret)) $o['secret'] = $this->secret;
return empty($o) ? new class(){} : $o;
}
}
PHP WebhookCreateAgreement DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /webhooks/terms HTTP/1.1
Host: api.bokamera.se
Accept: application/xml
Content-Type: application/xml
Content-Length: length
<WebhookCreateAgreement xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BokaMera.API.ServiceModel.Dtos">
<documents xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>String</d2p1:string>
</documents>
<releases>
<deletion>
<WebhookAgreements>
<documents xmlns:d5p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d5p1:string>String</d5p1:string>
</documents>
<id>String</id>
<label>String</label>
</WebhookAgreements>
</deletion>
</releases>
<secret>String</secret>
</WebhookCreateAgreement>
HTTP/1.1 200 OK Content-Type: application/xml Content-Length: length <z:anyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns:z="http://schemas.microsoft.com/2003/10/Serialization/" />