Requires any of the roles: | bookingsupplier-administrator-write, superadmin |
GET | /webhook/endpoints | List webhook endpoints |
---|
import java.math.*;
import java.util.*;
import net.servicestack.client.*;
public class dtos
{
@ApiResponse(Description="You were unauthorized to call this service", StatusCode=401)
@ValidateRequest(Validator="IsAuthenticated")
public static class ListWebhookEndpoint implements ICompany
{
/**
* The company id, if empty will use the company id for the user you are logged in with.
*/
@ApiMember(Description="The company id, if empty will use the company id for the user you are logged in with.", IsRequired=true, ParameterType="query")
public UUID CompanyId = null;
public UUID getCompanyId() { return CompanyId; }
public ListWebhookEndpoint setCompanyId(UUID value) { this.CompanyId = value; return this; }
}
public static class ListEndpointsResponse
{
public ArrayList<WebhookEndpoint> Endpoints = null;
public ArrayList<WebhookEndpoint> getEndpoints() { return Endpoints; }
public ListEndpointsResponse setEndpoints(ArrayList<WebhookEndpoint> value) { this.Endpoints = value; return this; }
}
public static class WebhookEndpoint
{
public String Description = null;
public String Url = null;
public String Id = null;
public Boolean Disabled = null;
public ArrayList<String> EventTypes = null;
public String getDescription() { return Description; }
public WebhookEndpoint setDescription(String value) { this.Description = value; return this; }
public String getUrl() { return Url; }
public WebhookEndpoint setUrl(String value) { this.Url = value; return this; }
public String getId() { return Id; }
public WebhookEndpoint setId(String value) { this.Id = value; return this; }
public Boolean isDisabled() { return Disabled; }
public WebhookEndpoint setDisabled(Boolean value) { this.Disabled = value; return this; }
public ArrayList<String> getEventTypes() { return EventTypes; }
public WebhookEndpoint setEventTypes(ArrayList<String> value) { this.EventTypes = value; return this; }
}
}
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.
GET /webhook/endpoints HTTP/1.1 Host: api.bokamera.se Accept: application/xml
HTTP/1.1 200 OK Content-Type: application/xml Content-Length: length <ListEndpointsResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BokaMera.API.ServiceModel.Dtos"> <Endpoints> <WebhookEndpoint> <Description>String</Description> <Disabled>false</Disabled> <EventTypes xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d4p1:string>String</d4p1:string> </EventTypes> <Id>String</Id> <Url>String</Url> </WebhookEndpoint> </Endpoints> </ListEndpointsResponse>