TechStacks!

<back to all web services

AddOrganizationCategory

Organization
Requires Authentication
The following routes are available for this service:
POST/orgs/{OrganizationId}/categories
import java.math.*;
import java.util.*;
import net.servicestack.client.*;

public class dtos
{

    public static class AddOrganizationCategory implements IPost
    {
        public Integer organizationId = null;
        public String slug = null;
        public String name = null;
        public String description = null;
        public ArrayList<Integer> technologyIds = null;
        
        public Integer getOrganizationId() { return organizationId; }
        public AddOrganizationCategory setOrganizationId(Integer value) { this.organizationId = value; return this; }
        public String getSlug() { return slug; }
        public AddOrganizationCategory setSlug(String value) { this.slug = value; return this; }
        public String getName() { return name; }
        public AddOrganizationCategory setName(String value) { this.name = value; return this; }
        public String getDescription() { return description; }
        public AddOrganizationCategory setDescription(String value) { this.description = value; return this; }
        public ArrayList<Integer> getTechnologyIds() { return technologyIds; }
        public AddOrganizationCategory setTechnologyIds(ArrayList<Integer> value) { this.technologyIds = value; return this; }
    }

    public static class AddOrganizationCategoryResponse
    {
        public Integer id = null;
        public String slug = null;
        public ResponseStatus responseStatus = null;
        
        public Integer getId() { return id; }
        public AddOrganizationCategoryResponse setId(Integer value) { this.id = value; return this; }
        public String getSlug() { return slug; }
        public AddOrganizationCategoryResponse setSlug(String value) { this.slug = value; return this; }
        public ResponseStatus getResponseStatus() { return responseStatus; }
        public AddOrganizationCategoryResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; }
    }

}

Java AddOrganizationCategory DTOs

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

HTTP + CSV

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

POST /orgs/{OrganizationId}/categories HTTP/1.1 
Host: techstacks.io 
Accept: text/csv
Content-Type: text/csv
Content-Length: length

{"organizationId":0,"slug":"String","name":"String","description":"String","technologyIds":[0]}
HTTP/1.1 200 OK
Content-Type: text/csv
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"}}}