ServiceStack Home (Live)

<back to all web services

CreateOpenSourceLicense

The following routes are available for this service:
POST/freelicense/opensource
POST/CreateOpenSourceLicense
using System;
using System.IO;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization;
using ServiceStack;
using ServiceStack.DataAnnotations;
using MyApp.ServiceInterface;

namespace MyApp.ServiceInterface
{
    public partial class CreateOpenSourceLicense
        : IPost
    {
        public virtual string LicenseName { get; set; }
        public virtual string ProjectUrl { get; set; }
        public virtual string LicenseSpdx { get; set; }
        public virtual bool AgreeTerms { get; set; }
    }

    public partial class FreeLicenseResponse
    {
        public virtual string LicenseName { get; set; }
        public virtual string LicenseRef { get; set; }
        public virtual string LicenseKey { get; set; }
        public virtual LicenseType? LicenseType { get; set; }
        public virtual DateTime? CreatedDate { get; set; }
        public virtual DateTime? ExpiryDate { get; set; }
        public virtual string ExternalRef { get; set; }
        public virtual ResponseStatus ResponseStatus { get; set; }
    }

}

namespace ServiceStack
{
    public enum LicenseType
    {
        Free,
        FreeIndividual,
        FreeOpenSource,
        Indie,
        Business,
        Enterprise,
        TextIndie,
        TextBusiness,
        OrmLiteIndie,
        OrmLiteBusiness,
        RedisIndie,
        RedisBusiness,
        AwsIndie,
        AwsBusiness,
        Trial,
        Site,
        TextSite,
        RedisSite,
        OrmLiteSite,
    }

}

C# CreateOpenSourceLicense DTOs

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

To embed the response in a jsonp callback, append ?callback=myCallback

HTTP + JSON

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

POST /freelicense/opensource HTTP/1.1 
Host: account.servicestack.net 
Accept: application/json
Content-Type: application/json
Content-Length: length

{"licenseName":"String","projectUrl":"String","licenseSpdx":"String","agreeTerms":false}
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length

{"licenseName":"String","licenseRef":"String","licenseKey":"String","licenseType":"Free","createdDate":"\/Date(-62135596800000-0000)\/","expiryDate":"\/Date(-62135596800000-0000)\/","externalRef":"String","responseStatus":{"errorCode":"String","message":"String","stackTrace":"String","errors":[{"errorCode":"String","fieldName":"String","message":"String","meta":{"String":"String"}}],"meta":{"String":"String"}}}