BokaMera.API.Host

<back to all web services

DeleteCompanyCommentSuperAdminUser

Requires Authentication
Required role:superadmin
The following routes are available for this service:
DELETE/superadmin/company/{CompanyId}/comments/{Id}Delete a comment.
"use strict";
/** @typedef {number} */
export var CommentsType;
(function (CommentsType) {
    CommentsType[CommentsType["NormalComment"] = 1] = "NormalComment"
    CommentsType[CommentsType["CallBackPhoneComment"] = 2] = "CallBackPhoneComment"
    CommentsType[CommentsType["CallBackEmailComment"] = 3] = "CallBackEmailComment"
    CommentsType[CommentsType["CallBackMeetingBookedComment"] = 4] = "CallBackMeetingBookedComment"
    CommentsType[CommentsType["CallBackNotInterestedComment"] = 5] = "CallBackNotInterestedComment"
})(CommentsType || (CommentsType = {}));
export class CommentsTypeResponse {
    /** @param {{Id?:number,Name?:string,Description?:string}} [init] */
    constructor(init) { Object.assign(this, init) }
    /** @type {number} */
    Id;
    /** @type {string} */
    Name;
    /** @type {string} */
    Description;
}
export class CompanyCommentsResponse {
    /** @param {{CompanyId?:string,Id?:number,Comment?:string,CommentTypeId?:CommentsType,CommentType?:CommentsTypeResponse,Updated?:string,Created?:string,CreatedBy?:string}} [init] */
    constructor(init) { Object.assign(this, init) }
    /** @type {?string} */
    CompanyId;
    /** @type {number} */
    Id;
    /** @type {string} */
    Comment;
    /** @type {CommentsType} */
    CommentTypeId;
    /** @type {CommentsTypeResponse} */
    CommentType;
    /**
     * @type {string}
     * @description The updated date */
    Updated;
    /**
     * @type {string}
     * @description The created date */
    Created;
    /**
     * @type {string}
     * @description The created by */
    CreatedBy;
}
export class DeleteCompanyCommentSuperAdminUser {
    /** @param {{CompanyId?:string,Id?:number}} [init] */
    constructor(init) { Object.assign(this, init) }
    /**
     * @type {string}
     * @description Enter the companyId for the customer */
    CompanyId;
    /** @type {number} */
    Id;
}

JavaScript DeleteCompanyCommentSuperAdminUser DTOs

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

HTTP + XML

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

DELETE /superadmin/company/{CompanyId}/comments/{Id} HTTP/1.1 
Host: testapi.bokamera.se 
Accept: application/xml
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length

<CompanyCommentsResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BokaMera.API.ServiceModel.Dtos">
  <Comment>String</Comment>
  <CommentType>
    <Description>String</Description>
    <Id>0</Id>
    <Name>String</Name>
  </CommentType>
  <CommentTypeId>NormalComment</CommentTypeId>
  <CompanyId>00000000-0000-0000-0000-000000000000</CompanyId>
  <Created>0001-01-01T00:00:00</Created>
  <CreatedBy>String</CreatedBy>
  <Id>0</Id>
  <Updated>0001-01-01T00:00:00</Updated>
</CompanyCommentsResponse>