Billiecart API

<back to all web services

AssociateUserAccountToCustomerRequest

Requires Authentication
Requires the role:manager
The following routes are available for this service:
PUT/customers/{Id}/associate-to-user-account
namespace Application.Interfaces.Resources

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

    [<AllowNullLiteral>]
    type BankAccount() = 
        member val BsbNumber:String = null with get,set
        member val AccountNumber:String = null with get,set

    [<AllowNullLiteral>]
    type Customer() = 
        member val Id:String = null with get,set
        member val FirstName:String = null with get,set
        member val LastName:String = null with get,set
        member val DateOfBirth:DateTime = new DateTime() with get,set
        member val DriversLicenceNo:String = null with get,set
        member val Email:String = null with get,set
        member val Phone:String = null with get,set
        member val PreferredContactMethod:String = null with get,set
        member val AddressLine1:String = null with get,set
        member val AddressLine2:String = null with get,set
        member val Suburb:String = null with get,set
        member val StateTerritory:String = null with get,set
        member val Postcode:String = null with get,set
        member val BankAccount:BankAccount = null with get,set
        member val UserAccountId:String = null with get,set

    [<AllowNullLiteral>]
    type AssociateUserAccountToCustomerResponse() = 
        member val ResponseStatus:ResponseStatus = null with get,set
        member val Customer:Customer = null with get,set

    [<AllowNullLiteral>]
    type AssociateUserAccountToCustomerRequest() = 
        inherit PutOperationTenanted<AssociateUserAccountToCustomerResponse>()
        member val Id:String = null with get,set
        member val UserAccountId:String = null with get,set

    [<AllowNullLiteral>]
    type PutOperationTenanted<'TResponse>() = 
        inherit PutOperationUnTenanted<TResponse>()
        member val OrganisationId:String = null with get,set

    [<AllowNullLiteral>]
    type PutOperationUnTenanted<'TResponse>() = 
        interface IPut

F# AssociateUserAccountToCustomerRequest 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.

PUT /customers/{Id}/associate-to-user-account HTTP/1.1 
Host: staging-api.billiecart.com.au 
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length

{
	id: String,
	userAccountId: String,
	organisationId: String
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

{
	responseStatus: 
	{
		errorCode: String,
		message: String,
		stackTrace: String,
		errors: 
		[
			{
				errorCode: String,
				fieldName: String,
				message: String,
				meta: 
				{
					String: String
				}
			}
		],
		meta: 
		{
			String: String
		}
	},
	customer: 
	{
		id: String,
		firstName: String,
		lastName: String,
		driversLicenceNo: String,
		email: String,
		phone: String,
		preferredContactMethod: String,
		addressLine1: String,
		addressLine2: String,
		suburb: String,
		stateTerritory: String,
		postcode: String,
		bankAccount: 
		{
			bsbNumber: String,
			accountNumber: String
		},
		userAccountId: String
	}
}