| POST | /v4/affiliate-tokens-sets |
|---|
"use strict";
export class PostAffiliateTokensSetResponse {
/** @param {{success?:boolean,affiliateTokensSetGuid?:string,responseStatus?:ResponseStatus}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {boolean} */
success;
/** @type {string} */
affiliateTokensSetGuid;
/** @type {ResponseStatus} */
responseStatus;
}
export class AffiliateProgram {
/** @param {{programGuid?:string,affiliateTokens?:{ [index:string]: string; }}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {string} */
programGuid;
/** @type {{ [index:string]: string; }} */
affiliateTokens;
}
export class PostAffiliateTokensSetRequest {
/** @param {{username?:string,affiliatePrograms?:AffiliateProgram[]}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {string} */
username;
/** @type {AffiliateProgram[]} */
affiliatePrograms;
}
JavaScript PostAffiliateTokensSetRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /v4/affiliate-tokens-sets HTTP/1.1
Host: affiliation-api-pr-4587.qa.platform.georiot.com
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
username: String,
affiliatePrograms:
[
{
programGuid: String
}
]
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length
{
success: False,
affiliateTokensSetGuid: 00000000000000000000000000000000,
responseStatus:
{
errorCode: String,
message: String,
stackTrace: String,
errors:
[
{
errorCode: String,
fieldName: String,
message: String,
meta:
{
String: String
}
}
],
meta:
{
String: String
}
}
}