POST | /orgs |
---|
"use strict";
export class CreateOrganizationResponse {
/** @param {{id?:number,slug?:string,responseStatus?:ResponseStatus}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {number} */
id;
/** @type {string} */
slug;
/** @type {ResponseStatus} */
responseStatus;
}
export class CreateOrganization {
/** @param {{name?:string,slug?:string,description?:string,refId?:number,refSource?:string,refUrn?:string}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {string} */
name;
/** @type {string} */
slug;
/** @type {string} */
description;
/** @type {?number} */
refId;
/** @type {string} */
refSource;
/** @type {string} */
refUrn;
}
JavaScript CreateOrganization 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.
POST /orgs HTTP/1.1
Host: techstacks.io
Accept: text/jsonl
Content-Type: text/jsonl
Content-Length: length
{"name":"String","slug":"String","description":"String","refId":0,"refSource":"String","refUrn":"String"}
HTTP/1.1 200 OK Content-Type: text/jsonl Content-Length: length {"id":0,"slug":"String","responseStatus":{"errorCode":"String","message":"String","stackTrace":"String","errors":[{"errorCode":"String","fieldName":"String","message":"String","meta":{"String":"String"}}],"meta":{"String":"String"}}}