Betting.WebApi

<back to all web services

CorrectOrganizationLocale

Requires Authentication
The following routes are available for this service:
POST/cmd/organizations/correct/locale
namespace Betting.WebApi.ServiceModel

open System
open System.IO
open System.Collections
open System.Collections.Generic
open System.Runtime.Serialization
open ServiceStack
open ServiceStack.DataAnnotations

    [<AllowNullLiteral>]
    type Ref() = 
        member val Id:String = null with get,set
        member val Val:String = null with get,set

    [<AllowNullLiteral>]
    type Locale() = 
        member val TimeZone:Ref = null with get,set
        member val Currency:Ref = null with get,set
        member val Language:Ref = null with get,set

    [<AllowNullLiteral>]
    type CorrectOrganizationLocale() = 
        member val Id:String = null with get,set
        member val Locale:Locale = null with get,set

F# CorrectOrganizationLocale DTOs

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

HTTP + JSV

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

POST /cmd/organizations/correct/locale HTTP/1.1 
Host: api.beto2.webhop.biz 
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length

{
	id: String,
	locale: 
	{
		timeZone: 
		{
			id: String,
			val: String
		},
		currency: 
		{
			id: String,
			val: String
		},
		language: 
		{
			id: String,
			val: String
		}
	}
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

{
	errorCode: String,
	message: String,
	stackTrace: String,
	errors: 
	[
		{
			errorCode: String,
			fieldName: String,
			message: String,
			meta: 
			{
				String: String
			}
		}
	],
	meta: 
	{
		String: String
	}
}