| Requires any of the roles: | bookingsupplier-administrator-write, superadmin | 
| GET | /customfields/slots | Find all slots to store custom fields data in | Get all available slots that are available to store data in | 
|---|
namespace BokaMera.API.ServiceModel.Dtos
open System
open System.IO
open System.Collections
open System.Collections.Generic
open System.Runtime.Serialization
open ServiceStack
open ServiceStack.DataAnnotations
    [<AllowNullLiteral>]
    type CustomFieldSlotsQueryResponse() = 
        ///<summary>
        ///Table to which the field belongs
        ///</summary>
        [<ApiMember(Description="Table to which the field belongs")>]
        member val Table:String = null with get,set
        ///<summary>
        ///Custom field id
        ///</summary>
        [<ApiMember(Description="Custom field id")>]
        member val Id:Int32 = new Int32() with get,set
        ///<summary>
        ///Custom field column name
        ///</summary>
        [<ApiMember(Description="Custom field column name")>]
        member val Name:String = null with get,set
        ///<summary>
        ///The field datatype
        ///</summary>
        [<ApiMember(Description="The field datatype")>]
        member val Datatype:String = null with get,set
        ///<summary>
        ///If the slot is free or occupied
        ///</summary>
        [<ApiMember(Description="If the slot is free or occupied")>]
        member val Occupied:Boolean = new Boolean() with get,set
    [<ApiResponse(Description="You were unauthorized to call this service", StatusCode=401)>]
    [<ApiResponse(Description="You have too low privilegies to call this service", StatusCode=403)>]
    [<ValidateRequest(Validator="IsAuthenticated")>]
    [<AllowNullLiteral>]
    type CustomFieldSlotsQuery() = 
        ///<summary>
        ///Company id to find custom fields for
        ///</summary>
        [<ApiMember(Description="Company id to find custom fields for", ParameterType="query")>]
        member val CompanyId:Nullable<Guid> = new Nullable<Guid>() with get,set
        ///<summary>
        ///Table to which the field belongs
        ///</summary>
        [<ApiMember(Description="Table to which the field belongs", IsRequired=true)>]
        member val Table:String = null with get,set
        ///<summary>
        ///If you want to receive only free slots (not occupied).
        ///</summary>
        [<ApiMember(Description="If you want to receive only free slots (not occupied).")>]
        member val FreeSlots:Nullable<Boolean> = new Nullable<Boolean>() with get,set
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 /customfields/slots HTTP/1.1 Host: api.bookmore.com Accept: application/xml
HTTP/1.1 200 OK Content-Type: application/xml Content-Length: length <CustomFieldSlotsQueryResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BokaMera.API.ServiceModel.Dtos"> <Datatype>String</Datatype> <Id>0</Id> <Name>String</Name> <Occupied>false</Occupied> <Table>String</Table> </CustomFieldSlotsQueryResponse>