BokaMera.API.Host

<back to all web services

ArticleQuery

The following routes are available for this service:
GET/eaccounting/articles
"use strict";
export class BaseArticleDto {
    /** @param {{ArticleId?:string,ArticlePrice?:number,ArticleName?:string,CreatedDate?:string}} [init] */
    constructor(init) { Object.assign(this, init) }
    /** @type {string} */
    ArticleId;
    /** @type {number} */
    ArticlePrice;
    /** @type {string} */
    ArticleName;
    /** @type {string} */
    CreatedDate;
}
export class ArticleQueryResponse extends BaseArticleDto {
    /** @param {{UnitId?:string,CodingId?:string,VatRate?:string,VatRatePercent?:string,CurrencySign?:string,ArticleId?:string,ArticlePrice?:number,ArticleName?:string,CreatedDate?:string}} [init] */
    constructor(init) { super(init); Object.assign(this, init) }
    /** @type {string} */
    UnitId;
    /** @type {string} */
    CodingId;
    /** @type {string} */
    VatRate;
    /** @type {string} */
    VatRatePercent;
    /** @type {string} */
    CurrencySign;
}
export class ArticleQuery {
    /** @param {{CompanyId?:string}} [init] */
    constructor(init) { Object.assign(this, init) }
    /** @type {?string} */
    CompanyId;
}

JavaScript ArticleQuery DTOs

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

HTTP + OTHER

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

GET /eaccounting/articles HTTP/1.1 
Host: testapi.bokamera.se 
Accept: text/jsonl
HTTP/1.1 200 OK
Content-Type: text/jsonl
Content-Length: length

{"UnitId":"String","CodingId":"String","VatRate":"String","VatRatePercent":"String","CurrencySign":"String","ArticlePrice":0,"ArticleName":"String"}