Required role: | superadmin |
GET | /superadmin/apikey/{CompanyId} | Get an api key for the customer. |
---|
export class ApiKeySuperAdminResponse
{
// @ApiMember(IsRequired=true)
public CompanyId: string;
// @ApiMember(IsRequired=true)
public ApiKey: string;
// @ApiMember(IsRequired=true)
public Notes: string;
// @ApiMember(IsRequired=true)
public InternalNotes: string;
public constructor(init?: Partial<ApiKeySuperAdminResponse>) { (Object as any).assign(this, init); }
}
// @ApiResponse(Description="", StatusCode=400)
// @ApiResponse(Description="Returned if the current user is not allowed to perform the action", StatusCode=401)
export class GetApiKeySuperAdminUser implements ICompany
{
/** @description Enter the companyId for the customer */
// @ApiMember(Description="Enter the companyId for the customer", IsRequired=true, ParameterType="query")
public CompanyId: string;
public constructor(init?: Partial<GetApiKeySuperAdminUser>) { (Object as any).assign(this, init); }
}
TypeScript GetApiKeySuperAdminUser DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .other suffix or ?format=other
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /superadmin/apikey/{CompanyId} HTTP/1.1 Host: testapi.bokamera.se Accept: text/jsonl
HTTP/1.1 200 OK Content-Type: text/jsonl Content-Length: length {"Notes":"String","InternalNotes":"String"}