TechStacks!

<back to all web services

CreateOrganization

Organization
Requires Authentication
The following routes are available for this service:
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 .jsv suffix or ?format=jsv

HTTP + JSV

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/jsv
Content-Type: text/jsv
Content-Length: length

{
	name: String,
	slug: String,
	description: String,
	refId: 0,
	refSource: String,
	refUrn: String
}
HTTP/1.1 200 OK
Content-Type: text/jsv
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
		}
	}
}