Requires the role: | manager |
POST | /employers |
---|
import java.math.*
import java.util.*
import net.servicestack.client.*
open class CreateEmployerRequest : PostOperationTenanted<CreateEmployerResponse>()
{
var name:String? = null
}
open class PostOperationTenanted<TResponse> : PostOperationUnTenanted<TResponse>(), ITenantedRequest
{
var organisationId:String? = null
}
open class PostOperationUnTenanted<TResponse> : IPost
{
}
open class CreateEmployerResponse
{
var responseStatus:ResponseStatus? = null
var employer:Employer? = null
}
open class Employer : IIdentifiableResource
{
var name:String? = null
var businessDetails:BusinessDetails? = null
var contact:Contact? = null
var postalAddress:Address? = null
var physicalAddress:Address? = null
var id:String? = null
}
open class BusinessDetails
{
var tradingName:String? = null
var australianBusinessNumber:String? = null
var australianCompanyNumber:String? = null
}
open class Contact
{
var contactName:String? = null
var email:String? = null
var phoneNumber:String? = null
var preferredContactMethod:String? = null
}
open class Address
{
var addressLine1:String? = null
var addressLine2:String? = null
var suburb:String? = null
var stateTerritory:String? = null
var postcode:String? = null
}
Kotlin CreateEmployerRequest 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
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /employers HTTP/1.1
Host: staging-api.billiecart.com.au
Accept: application/json
Content-Type: application/json
Content-Length: length
{"name":"String","organisationId":"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"}},"employer":{"name":"String","businessDetails":{"tradingName":"String","australianBusinessNumber":"String","australianCompanyNumber":"String"},"contact":{"contactName":"String","email":"String","phoneNumber":"String","preferredContactMethod":"String"},"postalAddress":{"addressLine1":"String","addressLine2":"String","suburb":"String","stateTerritory":"String","postcode":"String"},"physicalAddress":{"addressLine1":"String","addressLine2":"String","suburb":"String","stateTerritory":"String","postcode":"String"},"id":"String"}}