| Requires any of the roles: | bookingsupplier-administrator-write, superadmin |
| POST | /rebatecodes/transactions | Create transaction for the rebate code | Create transaction for the rebate code |
|---|
import java.math.*
import java.util.*
import java.io.InputStream
import net.servicestack.client.*
@ApiResponse(Description="You were unauthorized to call this service", StatusCode=401)
@ValidateRequest(Validator="IsAuthenticated")
open class CreateRebateCodeTransaction
{
/**
*
*/
@ApiMember(Description="", IsRequired=true)
open var CompanyId:UUID? = null
/**
* Rebate code id to which you wish to add transaction
*/
@ApiMember(Description="Rebate code id to which you wish to add transaction", IsRequired=true)
open var RebateCodeId:Int? = null
@ApiMember(IsRequired=true)
open var Amount:Double? = null
@ApiMember(IsRequired=true)
open var Usage:Int? = null
@ApiMember()
open var BookingId:Int? = null
/**
* If you want to Increase = 0 or Decrease = 1 the value
*/
@ApiMember(Description="If you want to Increase = 0 or Decrease = 1 the value", IsRequired=true)
open var ChangeType:AmountChangeType? = null
}
enum class AmountChangeType
{
Increase,
Decrease,
}
open class RebateCodeTransactionResponse
{
open var ResponseStatus:ResponseStatus? = null
open var RebateCodeTransactionItem:RebateCodeTransactionQueryResponse? = null
}
open class RebateCodeTransactionQueryResponse
{
open var Id:Int? = null
open var CompanyId:UUID? = null
open var Note:String? = null
open var RebateCodeId:Int? = null
open var RebateCodeSign:String? = null
open var RebateCodeTypeId:Int? = null
open var RebateCodeTypeName:String? = null
open var Amount:Double? = null
open var Usage:String? = null
open var BookingId:Int? = null
open var UpdatedDate:Date? = null
open var CreatedDate:Date? = null
open var Service:RebateCodeServiceResponse? = null
open var Customer:RebateCodeCustomerResponse? = null
open var PriceSign:String? = null
}
open class RebateCodeServiceResponse
{
open var Id:Int? = null
open var Name:String? = null
open var Description:String? = null
open var Active:Boolean? = null
}
open class RebateCodeCustomerResponse
{
open var Id:UUID? = null
open var Firstname:String? = null
open var Lastname:String? = null
open var Email:String? = null
open var Phone:String? = null
open var ImageUrl:String? = null
}
Kotlin CreateRebateCodeTransaction DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /rebatecodes/transactions HTTP/1.1
Host: api.bokamera.se
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
CompanyId: 00000000-0000-0000-0000-000000000000,
RebateCodeId: 0,
Amount: 0,
Usage: 0,
BookingId: 0,
ChangeType: Increase
}
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
}
},
RebateCodeTransactionItem:
{
Id: 0,
Note: String,
RebateCodeId: 0,
RebateCodeSign: String,
RebateCodeTypeId: 0,
RebateCodeTypeName: String,
Amount: 0,
Usage: String,
BookingId: 0,
Service:
{
Id: 0,
Name: String,
Description: String,
Active: False
},
Customer:
{
Firstname: String,
Lastname: String,
Email: String,
Phone: String,
ImageUrl: String
},
PriceSign: String
}
}