Billiecart API

<back to all web services

CreateOrganisationRequest

Requires Authentication
Requires the role:manager
The following routes are available for this service:
POST/organisations
import java.math.*;
import java.util.*;
import net.servicestack.client.*;

public class dtos
{

    public static class CreateOrganisationRequest extends PostOperationUnTenanted<CreateOrganisationResponse>
    {
        public String name = null;
        
        public String getName() { return name; }
        public CreateOrganisationRequest setName(String value) { this.name = value; return this; }
    }

    public static class PostOperationUnTenanted<TResponse> implements IPost
    {
        
    }

    public static class CreateOrganisationResponse
    {
        public ResponseStatus responseStatus = null;
        public Organisation organisation = null;
        
        public ResponseStatus getResponseStatus() { return responseStatus; }
        public CreateOrganisationResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; }
        public Organisation getOrganisation() { return organisation; }
        public CreateOrganisationResponse setOrganisation(Organisation value) { this.organisation = value; return this; }
    }

    public static class Organisation implements IIdentifiableResource
    {
        public String displayName = null;
        public ArrayList<String> owners = null;
        public Boolean isDefault = null;
        public String id = null;
        
        public String getDisplayName() { return displayName; }
        public Organisation setDisplayName(String value) { this.displayName = value; return this; }
        public ArrayList<String> getOwners() { return owners; }
        public Organisation setOwners(ArrayList<String> value) { this.owners = value; return this; }
        public Boolean getIsDefault() { return isDefault; }
        public Organisation setIsDefault(Boolean value) { this.isDefault = value; return this; }
        public String getId() { return id; }
        public Organisation setId(String value) { this.id = value; return this; }
    }

}

Java CreateOrganisationRequest DTOs

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

To embed the response in a jsonp callback, append ?callback=myCallback

HTTP + JSON

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /organisations HTTP/1.1 
Host: staging-api.billiecart.com.au 
Accept: application/json
Content-Type: application/json
Content-Length: length

{"name":"String"}
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length

{"responseStatus":{"errorCode":"String","message":"String","stackTrace":"String","errors":[{"errorCode":"String","fieldName":"String","message":"String","meta":{"String":"String"}}],"meta":{"String":"String"}},"organisation":{"displayName":"String","owners":["String"],"isDefault":false,"id":"String"}}