| Required role: | Admin | Required permissions: | CanAccess, CanAdd |
| POST | /async/products/batch |
|---|
namespace PwC.Metering.Core.Domain.Concretes.Models
open System
open System.IO
open System.Collections
open System.Collections.Generic
open System.Runtime.Serialization
open ServiceStack
open ServiceStack.DataAnnotations
///<summary>
///Represents a product.
///</summary>
[<Api(Description="Represents a product.")>]
[<AllowNullLiteral>]
type Product() =
///<summary>
///The unique identifier of the product.
///</summary>
[<ApiMember(Description="The unique identifier of the product.", IsRequired=true)>]
member val Id:Int32 = new Int32() with get,set
///<summary>
///The position of this instance in a collection of 'Product' instances
///</summary>
[<ApiMember(Description="The position of this instance in a collection of 'Product' instances", IsRequired=true)>]
member val Index:Int32 = new Int32() with get,set
///<summary>
///The name of the product.
///</summary>
[<ApiMember(Description="The name of the product.", IsRequired=true)>]
[<Validate(Validator="NotEmpty")>]
member val Name:String = null with get,set
///<summary>
///The version of the product.
///</summary>
[<ApiMember(Description="The version of the product.", IsRequired=true)>]
[<Validate(Validator="NotEmpty")>]
member val Version:String = null with get,set
///<summary>
///The version of the product.
///</summary>
[<ApiMember(Description="The version of the product.")>]
member val Description:String = null with get,set
///<summary>
///Tags associated with the product.
///</summary>
[<ApiMember(Description="Tags associated with the product.")>]
member val Tags:ResizeArray<String> = null with get,set
///<summary>
///Specifies a base service request to register one or more products in a batch operation.
///</summary>
[<Api(Description="Specifies a base service request to register one or more products in a batch operation.")>]
[<AllowNullLiteral>]
type BatchRegisterProductsBase() =
interface IPost
///<summary>
///The products to register.
///</summary>
[<ApiMember(Description="The products to register.", IsRequired=true)>]
member val Products:ResizeArray<Product> = null with get,set
///<summary>
///Represents a service request to register one or more products in a batch operation.
///</summary>
[<Api(Description="Represents a service request to register one or more products in a batch operation.")>]
[<AllowNullLiteral>]
type BatchRegisterProductsAsync() =
inherit BatchRegisterProductsBase()
F# BatchRegisterProductsAsync 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 /async/products/batch HTTP/1.1
Host: taxfiling.staging.pwc.de
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
products:
[
{
id: 0,
index: 0,
name: String,
version: String,
description: String,
tags:
[
String
]
}
]
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length
[
{
product:
{
id: 0,
index: 0,
name: String,
version: String,
description: String,
tags:
[
String
]
},
orders:
[
{
id: 0,
productId: 0,
accountId: 0,
name: String,
serviceName: String,
requestTimestamp: 0001-01-01,
responseTimestamp: 0001-01-01,
requestUri: String,
requestHttpMethod: String,
requestDuration: PT0S,
responseStatusCode: Continue,
clientIPAddress: String,
unitOfMeasurement: String,
processType: String,
dataType: String,
dataName: String,
creationDate: 0001-01-01,
expiryDate: 0001-01-01,
isTest: False
}
],
responseStatus:
{
errorCode: String,
message: String,
stackTrace: String,
errors:
[
{
errorCode: String,
fieldName: String,
message: String,
meta:
{
String: String
}
}
],
meta:
{
String: String
}
}
}
]