API - plataforma NSIGN

ApiKey

deleteApiKeyCustomer

Eliminar la apiKey relacionada con el usuario que realiza la petición.


/apikey/token

Usage and SDK Samples

curl -X DELETE\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/apikey/token"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ApiKeyApi;

import java.io.File;
import java.util.*;

public class ApiKeyApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ApiKeyApi apiInstance = new ApiKeyApi();
        try {
            apiInstance.deleteApiKeyCustomer();
        } catch (ApiException e) {
            System.err.println("Exception when calling ApiKeyApi#deleteApiKeyCustomer");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ApiKeyApi;

public class ApiKeyApiExample {

    public static void main(String[] args) {
        ApiKeyApi apiInstance = new ApiKeyApi();
        try {
            apiInstance.deleteApiKeyCustomer();
        } catch (ApiException e) {
            System.err.println("Exception when calling ApiKeyApi#deleteApiKeyCustomer");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];

ApiKeyApi *apiInstance = [[ApiKeyApi alloc] init];

[apiInstance deleteApiKeyCustomerWithCompletionHandler: 
              ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.ApiKeyApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.deleteApiKeyCustomer(callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class deleteApiKeyCustomerExample
    {
        public void main()
        {


            var apiInstance = new ApiKeyApi();

            try
            {
                apiInstance.deleteApiKeyCustomer();
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ApiKeyApi.deleteApiKeyCustomer: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiApiKeyApi();

try {
    $api_instance->deleteApiKeyCustomer();
} catch (Exception $e) {
    echo 'Exception when calling ApiKeyApi->deleteApiKeyCustomer: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ApiKeyApi;


my $api_instance = WWW::SwaggerClient::ApiKeyApi->new();

eval { 
    $api_instance->deleteApiKeyCustomer();
};
if ($@) {
    warn "Exception when calling ApiKeyApi->deleteApiKeyCustomer: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ApiKeyApi()

try: 
    api_instance.delete_api_key_customer()
except ApiException as e:
    print("Exception when calling ApiKeyApi->deleteApiKeyCustomer: %s\n" % e)

Parameters

Responses

Status: 200 - Confiramción de acción

Status: 401 - El token no es válido


getApiKeyCustomer

ApiKey relacionado con el usuario que realiza la petición. ApiKey no tiene una fecha de caducidad,


/apikey/token

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/apikey/token"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ApiKeyApi;

import java.io.File;
import java.util.*;

public class ApiKeyApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ApiKeyApi apiInstance = new ApiKeyApi();
        try {
            inline_response_200 result = apiInstance.getApiKeyCustomer();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ApiKeyApi#getApiKeyCustomer");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ApiKeyApi;

public class ApiKeyApiExample {

    public static void main(String[] args) {
        ApiKeyApi apiInstance = new ApiKeyApi();
        try {
            inline_response_200 result = apiInstance.getApiKeyCustomer();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ApiKeyApi#getApiKeyCustomer");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];

ApiKeyApi *apiInstance = [[ApiKeyApi alloc] init];

[apiInstance getApiKeyCustomerWithCompletionHandler: 
              ^(inline_response_200 output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.ApiKeyApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.getApiKeyCustomer(callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class getApiKeyCustomerExample
    {
        public void main()
        {


            var apiInstance = new ApiKeyApi();

            try
            {
                inline_response_200 result = apiInstance.getApiKeyCustomer();
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ApiKeyApi.getApiKeyCustomer: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiApiKeyApi();

try {
    $result = $api_instance->getApiKeyCustomer();
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ApiKeyApi->getApiKeyCustomer: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ApiKeyApi;


my $api_instance = WWW::SwaggerClient::ApiKeyApi->new();

eval { 
    my $result = $api_instance->getApiKeyCustomer();
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ApiKeyApi->getApiKeyCustomer: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ApiKeyApi()

try: 
    api_response = api_instance.get_api_key_customer()
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ApiKeyApi->getApiKeyCustomer: %s\n" % e)

Parameters

Responses

Status: 200 - Respuesta con apiKey

Status: 401 - El token no es válido


refreshApiKeyCustomer

Actualizar la apiKey relacionada con el usuario que realiza la petición. La antigua apiKey dejará de funcionar. En caso si customer no tiene apiKey se generará una nueva


/apikey/token/refresh

Usage and SDK Samples

curl -X PUT\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/apikey/token/refresh"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ApiKeyApi;

import java.io.File;
import java.util.*;

public class ApiKeyApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ApiKeyApi apiInstance = new ApiKeyApi();
        try {
            inline_response_200 result = apiInstance.refreshApiKeyCustomer();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ApiKeyApi#refreshApiKeyCustomer");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ApiKeyApi;

public class ApiKeyApiExample {

    public static void main(String[] args) {
        ApiKeyApi apiInstance = new ApiKeyApi();
        try {
            inline_response_200 result = apiInstance.refreshApiKeyCustomer();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ApiKeyApi#refreshApiKeyCustomer");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];

ApiKeyApi *apiInstance = [[ApiKeyApi alloc] init];

[apiInstance refreshApiKeyCustomerWithCompletionHandler: 
              ^(inline_response_200 output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.ApiKeyApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.refreshApiKeyCustomer(callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class refreshApiKeyCustomerExample
    {
        public void main()
        {


            var apiInstance = new ApiKeyApi();

            try
            {
                inline_response_200 result = apiInstance.refreshApiKeyCustomer();
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ApiKeyApi.refreshApiKeyCustomer: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiApiKeyApi();

try {
    $result = $api_instance->refreshApiKeyCustomer();
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ApiKeyApi->refreshApiKeyCustomer: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ApiKeyApi;


my $api_instance = WWW::SwaggerClient::ApiKeyApi->new();

eval { 
    my $result = $api_instance->refreshApiKeyCustomer();
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ApiKeyApi->refreshApiKeyCustomer: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ApiKeyApi()

try: 
    api_response = api_instance.refresh_api_key_customer()
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ApiKeyApi->refreshApiKeyCustomer: %s\n" % e)

Parameters

Responses

Status: 200 - Respuesta con apiKey

Status: 401 - El token no es válido


ApiKeyChild

deleteApiKeyChildCustomer

Eliminar la apiKey relacionada con el customer que corresponde a parametro 'inPath' {customerId}


/apikey/customer/{customerId}/token

Usage and SDK Samples

curl -X DELETE\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/apikey/customer/{customerId}/token"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ApiKeyChildApi;

import java.io.File;
import java.util.*;

public class ApiKeyChildApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ApiKeyChildApi apiInstance = new ApiKeyChildApi();
        Integer customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
        try {
            apiInstance.deleteApiKeyChildCustomer(customerId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ApiKeyChildApi#deleteApiKeyChildCustomer");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ApiKeyChildApi;

public class ApiKeyChildApiExample {

    public static void main(String[] args) {
        ApiKeyChildApi apiInstance = new ApiKeyChildApi();
        Integer customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
        try {
            apiInstance.deleteApiKeyChildCustomer(customerId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ApiKeyChildApi#deleteApiKeyChildCustomer");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *customerId = 56; // ID de customer relacionado con el usuario que realiza la petición.

ApiKeyChildApi *apiInstance = [[ApiKeyChildApi alloc] init];

[apiInstance deleteApiKeyChildCustomerWith:customerId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.ApiKeyChildApi()
var customerId = 56; // {{Integer}} ID de customer relacionado con el usuario que realiza la petición.

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.deleteApiKeyChildCustomer(customerId, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class deleteApiKeyChildCustomerExample
    {
        public void main()
        {


            var apiInstance = new ApiKeyChildApi();
            var customerId = 56;  // Integer | ID de customer relacionado con el usuario que realiza la petición.

            try
            {
                apiInstance.deleteApiKeyChildCustomer(customerId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ApiKeyChildApi.deleteApiKeyChildCustomer: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiApiKeyChildApi();
$customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.

try {
    $api_instance->deleteApiKeyChildCustomer($customerId);
} catch (Exception $e) {
    echo 'Exception when calling ApiKeyChildApi->deleteApiKeyChildCustomer: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ApiKeyChildApi;


my $api_instance = WWW::SwaggerClient::ApiKeyChildApi->new();
my $customerId = 56; # Integer | ID de customer relacionado con el usuario que realiza la petición.

eval { 
    $api_instance->deleteApiKeyChildCustomer(customerId => $customerId);
};
if ($@) {
    warn "Exception when calling ApiKeyChildApi->deleteApiKeyChildCustomer: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ApiKeyChildApi()
customerId = 56 # Integer | ID de customer relacionado con el usuario que realiza la petición.

try: 
    api_instance.delete_api_key_child_customer(customerId)
except ApiException as e:
    print("Exception when calling ApiKeyChildApi->deleteApiKeyChildCustomer: %s\n" % e)

Parameters

Path parameters
Name Description
customerId*
Integer
ID de customer relacionado con el usuario que realiza la petición.
Required

Responses

Status: 200 - Confiramción de acción

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


getApiKeyChildCustomer

ApiKey de acceso sin fecha de caducidad, relacionada con el customer que corresponde a parametro 'inPath' {customerId}.


/apikey/customer/{customerId}/token

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/apikey/customer/{customerId}/token"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ApiKeyChildApi;

import java.io.File;
import java.util.*;

public class ApiKeyChildApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ApiKeyChildApi apiInstance = new ApiKeyChildApi();
        Integer customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
        try {
            inline_response_200 result = apiInstance.getApiKeyChildCustomer(customerId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ApiKeyChildApi#getApiKeyChildCustomer");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ApiKeyChildApi;

public class ApiKeyChildApiExample {

    public static void main(String[] args) {
        ApiKeyChildApi apiInstance = new ApiKeyChildApi();
        Integer customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
        try {
            inline_response_200 result = apiInstance.getApiKeyChildCustomer(customerId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ApiKeyChildApi#getApiKeyChildCustomer");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *customerId = 56; // ID de customer relacionado con el usuario que realiza la petición.

ApiKeyChildApi *apiInstance = [[ApiKeyChildApi alloc] init];

[apiInstance getApiKeyChildCustomerWith:customerId
              completionHandler: ^(inline_response_200 output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.ApiKeyChildApi()
var customerId = 56; // {{Integer}} ID de customer relacionado con el usuario que realiza la petición.

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.getApiKeyChildCustomer(customerId, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class getApiKeyChildCustomerExample
    {
        public void main()
        {


            var apiInstance = new ApiKeyChildApi();
            var customerId = 56;  // Integer | ID de customer relacionado con el usuario que realiza la petición.

            try
            {
                inline_response_200 result = apiInstance.getApiKeyChildCustomer(customerId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ApiKeyChildApi.getApiKeyChildCustomer: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiApiKeyChildApi();
$customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.

try {
    $result = $api_instance->getApiKeyChildCustomer($customerId);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ApiKeyChildApi->getApiKeyChildCustomer: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ApiKeyChildApi;


my $api_instance = WWW::SwaggerClient::ApiKeyChildApi->new();
my $customerId = 56; # Integer | ID de customer relacionado con el usuario que realiza la petición.

eval { 
    my $result = $api_instance->getApiKeyChildCustomer(customerId => $customerId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ApiKeyChildApi->getApiKeyChildCustomer: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ApiKeyChildApi()
customerId = 56 # Integer | ID de customer relacionado con el usuario que realiza la petición.

try: 
    api_response = api_instance.get_api_key_child_customer(customerId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ApiKeyChildApi->getApiKeyChildCustomer: %s\n" % e)

Parameters

Path parameters
Name Description
customerId*
Integer
ID de customer relacionado con el usuario que realiza la petición.
Required

Responses

Status: 200 - Respuesta con apiKey

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


refreshApiKeyChildCustomer

Actualizar la apiKey relacionada con el customer que corresponde a parametro 'inPath' {customerId}. La antigua apiKey dejará de funcionar. En caso si customer no tiene apiKey se generará una nueva


/apikey/customer/{customerId}/token/refresh

Usage and SDK Samples

curl -X PUT\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/apikey/customer/{customerId}/token/refresh"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ApiKeyChildApi;

import java.io.File;
import java.util.*;

public class ApiKeyChildApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ApiKeyChildApi apiInstance = new ApiKeyChildApi();
        Integer customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
        try {
            inline_response_200 result = apiInstance.refreshApiKeyChildCustomer(customerId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ApiKeyChildApi#refreshApiKeyChildCustomer");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ApiKeyChildApi;

public class ApiKeyChildApiExample {

    public static void main(String[] args) {
        ApiKeyChildApi apiInstance = new ApiKeyChildApi();
        Integer customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
        try {
            inline_response_200 result = apiInstance.refreshApiKeyChildCustomer(customerId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ApiKeyChildApi#refreshApiKeyChildCustomer");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *customerId = 56; // ID de customer relacionado con el usuario que realiza la petición.

ApiKeyChildApi *apiInstance = [[ApiKeyChildApi alloc] init];

[apiInstance refreshApiKeyChildCustomerWith:customerId
              completionHandler: ^(inline_response_200 output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.ApiKeyChildApi()
var customerId = 56; // {{Integer}} ID de customer relacionado con el usuario que realiza la petición.

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.refreshApiKeyChildCustomer(customerId, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class refreshApiKeyChildCustomerExample
    {
        public void main()
        {


            var apiInstance = new ApiKeyChildApi();
            var customerId = 56;  // Integer | ID de customer relacionado con el usuario que realiza la petición.

            try
            {
                inline_response_200 result = apiInstance.refreshApiKeyChildCustomer(customerId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ApiKeyChildApi.refreshApiKeyChildCustomer: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiApiKeyChildApi();
$customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.

try {
    $result = $api_instance->refreshApiKeyChildCustomer($customerId);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ApiKeyChildApi->refreshApiKeyChildCustomer: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ApiKeyChildApi;


my $api_instance = WWW::SwaggerClient::ApiKeyChildApi->new();
my $customerId = 56; # Integer | ID de customer relacionado con el usuario que realiza la petición.

eval { 
    my $result = $api_instance->refreshApiKeyChildCustomer(customerId => $customerId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ApiKeyChildApi->refreshApiKeyChildCustomer: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ApiKeyChildApi()
customerId = 56 # Integer | ID de customer relacionado con el usuario que realiza la petición.

try: 
    api_response = api_instance.refresh_api_key_child_customer(customerId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ApiKeyChildApi->refreshApiKeyChildCustomer: %s\n" % e)

Parameters

Path parameters
Name Description
customerId*
Integer
ID de customer relacionado con el usuario que realiza la petición.
Required

Responses

Status: 200 - Respuesta con apiKey

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


Apk

putApkManagerUpdateApkEditorShow

Actualizar el estado del campo de si debe mostrarse el registro en la ficha de player.


/update/apk/{id}/playerEditShow

Usage and SDK Samples

curl -X PUT\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
-H "Content-Type: text/plain"\
"https://{env}.nsign.tv/update/apk/{id}/playerEditShow"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ApkApi;

import java.io.File;
import java.util.*;

public class ApkApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ApkApi apiInstance = new ApkApi();
        Integer id = 56; // Integer |  Id de aplicaiones.
        try {
            apiInstance.putApkManagerUpdateApkEditorShow(id);
        } catch (ApiException e) {
            System.err.println("Exception when calling ApkApi#putApkManagerUpdateApkEditorShow");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ApkApi;

public class ApkApiExample {

    public static void main(String[] args) {
        ApkApi apiInstance = new ApkApi();
        Integer id = 56; // Integer |  Id de aplicaiones.
        try {
            apiInstance.putApkManagerUpdateApkEditorShow(id);
        } catch (ApiException e) {
            System.err.println("Exception when calling ApkApi#putApkManagerUpdateApkEditorShow");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *id = 56; //  Id de aplicaiones.

ApkApi *apiInstance = [[ApkApi alloc] init];

[apiInstance putApkManagerUpdateApkEditorShowWith:id
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.ApkApi()
var id = 56; // {{Integer}}  Id de aplicaiones.

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.putApkManagerUpdateApkEditorShow(id, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class putApkManagerUpdateApkEditorShowExample
    {
        public void main()
        {


            var apiInstance = new ApkApi();
            var id = 56;  // Integer |  Id de aplicaiones.

            try
            {
                apiInstance.putApkManagerUpdateApkEditorShow(id);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ApkApi.putApkManagerUpdateApkEditorShow: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiApkApi();
$id = 56; // Integer |  Id de aplicaiones.

try {
    $api_instance->putApkManagerUpdateApkEditorShow($id);
} catch (Exception $e) {
    echo 'Exception when calling ApkApi->putApkManagerUpdateApkEditorShow: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ApkApi;


my $api_instance = WWW::SwaggerClient::ApkApi->new();
my $id = 56; # Integer |  Id de aplicaiones.

eval { 
    $api_instance->putApkManagerUpdateApkEditorShow(id => $id);
};
if ($@) {
    warn "Exception when calling ApkApi->putApkManagerUpdateApkEditorShow: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ApkApi()
id = 56 # Integer |  Id de aplicaiones.

try: 
    api_instance.put_apk_manager_update_apk_editor_show(id)
except ApiException as e:
    print("Exception when calling ApkApi->putApkManagerUpdateApkEditorShow: %s\n" % e)

Parameters

Path parameters
Name Description
id*
Integer
Id de aplicaiones.
Required

Responses

Status: 200 - Guardado correctamente.

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


putApkManagerUpdateApkLatest

Actualizar el estado del campo de si debe mostrarse el registro en la ficha de player.


/update/apk/{id}/latest

Usage and SDK Samples

curl -X PUT\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
-H "Content-Type: text/plain"\
"https://{env}.nsign.tv/update/apk/{id}/latest"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ApkApi;

import java.io.File;
import java.util.*;

public class ApkApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ApkApi apiInstance = new ApkApi();
        Integer id = 56; // Integer |  Id de aplicaiones.
        try {
            apiInstance.putApkManagerUpdateApkLatest(id);
        } catch (ApiException e) {
            System.err.println("Exception when calling ApkApi#putApkManagerUpdateApkLatest");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ApkApi;

public class ApkApiExample {

    public static void main(String[] args) {
        ApkApi apiInstance = new ApkApi();
        Integer id = 56; // Integer |  Id de aplicaiones.
        try {
            apiInstance.putApkManagerUpdateApkLatest(id);
        } catch (ApiException e) {
            System.err.println("Exception when calling ApkApi#putApkManagerUpdateApkLatest");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *id = 56; //  Id de aplicaiones.

ApkApi *apiInstance = [[ApkApi alloc] init];

[apiInstance putApkManagerUpdateApkLatestWith:id
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.ApkApi()
var id = 56; // {{Integer}}  Id de aplicaiones.

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.putApkManagerUpdateApkLatest(id, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class putApkManagerUpdateApkLatestExample
    {
        public void main()
        {


            var apiInstance = new ApkApi();
            var id = 56;  // Integer |  Id de aplicaiones.

            try
            {
                apiInstance.putApkManagerUpdateApkLatest(id);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ApkApi.putApkManagerUpdateApkLatest: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiApkApi();
$id = 56; // Integer |  Id de aplicaiones.

try {
    $api_instance->putApkManagerUpdateApkLatest($id);
} catch (Exception $e) {
    echo 'Exception when calling ApkApi->putApkManagerUpdateApkLatest: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ApkApi;


my $api_instance = WWW::SwaggerClient::ApkApi->new();
my $id = 56; # Integer |  Id de aplicaiones.

eval { 
    $api_instance->putApkManagerUpdateApkLatest(id => $id);
};
if ($@) {
    warn "Exception when calling ApkApi->putApkManagerUpdateApkLatest: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ApkApi()
id = 56 # Integer |  Id de aplicaiones.

try: 
    api_instance.put_apk_manager_update_apk_latest(id)
except ApiException as e:
    print("Exception when calling ApkApi->putApkManagerUpdateApkLatest: %s\n" % e)

Parameters

Path parameters
Name Description
id*
Integer
Id de aplicaiones.
Required

Responses

Status: 200 - Guardado correctamente.

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


ApkGroup

putApkManagerUpdateGroupLatest

Actualizar el estado del campo de si debe mostrarse el registro en el listado versiones finales de apps.


/update/group/{groupId}/latestListShow

Usage and SDK Samples

curl -X PUT\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
-H "Content-Type: application/json"\
"https://{env}.nsign.tv/update/group/{groupId}/latestListShow"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ApkGroupApi;

import java.io.File;
import java.util.*;

public class ApkGroupApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ApkGroupApi apiInstance = new ApkGroupApi();
        String groupId = groupId_example; // String |  Id de grup de aplicaiones.
        Resource body = ; // Resource | 
        try {
            apiInstance.putApkManagerUpdateGroupLatest(groupId, body);
        } catch (ApiException e) {
            System.err.println("Exception when calling ApkGroupApi#putApkManagerUpdateGroupLatest");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ApkGroupApi;

public class ApkGroupApiExample {

    public static void main(String[] args) {
        ApkGroupApi apiInstance = new ApkGroupApi();
        String groupId = groupId_example; // String |  Id de grup de aplicaiones.
        Resource body = ; // Resource | 
        try {
            apiInstance.putApkManagerUpdateGroupLatest(groupId, body);
        } catch (ApiException e) {
            System.err.println("Exception when calling ApkGroupApi#putApkManagerUpdateGroupLatest");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
String *groupId = groupId_example; //  Id de grup de aplicaiones.
Resource *body = ; //  (optional)

ApkGroupApi *apiInstance = [[ApkGroupApi alloc] init];

[apiInstance putApkManagerUpdateGroupLatestWith:groupId
    body:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.ApkGroupApi()
var groupId = groupId_example; // {{String}}  Id de grup de aplicaiones.
var opts = { 
  'body':  // {{Resource}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.putApkManagerUpdateGroupLatest(groupId, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class putApkManagerUpdateGroupLatestExample
    {
        public void main()
        {


            var apiInstance = new ApkGroupApi();
            var groupId = groupId_example;  // String |  Id de grup de aplicaiones.
            var body = new Resource(); // Resource |  (optional) 

            try
            {
                apiInstance.putApkManagerUpdateGroupLatest(groupId, body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ApkGroupApi.putApkManagerUpdateGroupLatest: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiApkGroupApi();
$groupId = groupId_example; // String |  Id de grup de aplicaiones.
$body = ; // Resource | 

try {
    $api_instance->putApkManagerUpdateGroupLatest($groupId, $body);
} catch (Exception $e) {
    echo 'Exception when calling ApkGroupApi->putApkManagerUpdateGroupLatest: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ApkGroupApi;


my $api_instance = WWW::SwaggerClient::ApkGroupApi->new();
my $groupId = groupId_example; # String |  Id de grup de aplicaiones.
my $body = WWW::SwaggerClient::Object::Resource->new(); # Resource | 

eval { 
    $api_instance->putApkManagerUpdateGroupLatest(groupId => $groupId, body => $body);
};
if ($@) {
    warn "Exception when calling ApkGroupApi->putApkManagerUpdateGroupLatest: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ApkGroupApi()
groupId = groupId_example # String |  Id de grup de aplicaiones.
body =  # Resource |  (optional)

try: 
    api_instance.put_apk_manager_update_group_latest(groupId, body=body)
except ApiException as e:
    print("Exception when calling ApkGroupApi->putApkManagerUpdateGroupLatest: %s\n" % e)

Parameters

Path parameters
Name Description
groupId*
String
Id de grup de aplicaiones.
Required
Body parameters
Name Description
body

Responses

Status: 200 - Guardado correctamente.

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


ApkLatest

putApkManagerUpdateApkLatest

Actualizar el estado del campo de si debe mostrarse el registro en la ficha de player.


/update/apk/{id}/latest

Usage and SDK Samples

curl -X PUT\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
-H "Content-Type: text/plain"\
"https://{env}.nsign.tv/update/apk/{id}/latest"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ApkLatestApi;

import java.io.File;
import java.util.*;

public class ApkLatestApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ApkLatestApi apiInstance = new ApkLatestApi();
        Integer id = 56; // Integer |  Id de aplicaiones.
        try {
            apiInstance.putApkManagerUpdateApkLatest(id);
        } catch (ApiException e) {
            System.err.println("Exception when calling ApkLatestApi#putApkManagerUpdateApkLatest");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ApkLatestApi;

public class ApkLatestApiExample {

    public static void main(String[] args) {
        ApkLatestApi apiInstance = new ApkLatestApi();
        Integer id = 56; // Integer |  Id de aplicaiones.
        try {
            apiInstance.putApkManagerUpdateApkLatest(id);
        } catch (ApiException e) {
            System.err.println("Exception when calling ApkLatestApi#putApkManagerUpdateApkLatest");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *id = 56; //  Id de aplicaiones.

ApkLatestApi *apiInstance = [[ApkLatestApi alloc] init];

[apiInstance putApkManagerUpdateApkLatestWith:id
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.ApkLatestApi()
var id = 56; // {{Integer}}  Id de aplicaiones.

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.putApkManagerUpdateApkLatest(id, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class putApkManagerUpdateApkLatestExample
    {
        public void main()
        {


            var apiInstance = new ApkLatestApi();
            var id = 56;  // Integer |  Id de aplicaiones.

            try
            {
                apiInstance.putApkManagerUpdateApkLatest(id);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ApkLatestApi.putApkManagerUpdateApkLatest: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiApkLatestApi();
$id = 56; // Integer |  Id de aplicaiones.

try {
    $api_instance->putApkManagerUpdateApkLatest($id);
} catch (Exception $e) {
    echo 'Exception when calling ApkLatestApi->putApkManagerUpdateApkLatest: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ApkLatestApi;


my $api_instance = WWW::SwaggerClient::ApkLatestApi->new();
my $id = 56; # Integer |  Id de aplicaiones.

eval { 
    $api_instance->putApkManagerUpdateApkLatest(id => $id);
};
if ($@) {
    warn "Exception when calling ApkLatestApi->putApkManagerUpdateApkLatest: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ApkLatestApi()
id = 56 # Integer |  Id de aplicaiones.

try: 
    api_instance.put_apk_manager_update_apk_latest(id)
except ApiException as e:
    print("Exception when calling ApkLatestApi->putApkManagerUpdateApkLatest: %s\n" % e)

Parameters

Path parameters
Name Description
id*
Integer
Id de aplicaiones.
Required

Responses

Status: 200 - Guardado correctamente.

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


ApkManager

deleteApkManagerApk

Eliminar Player Apk que corresponde a parametro 'inPath' {id}


/delete/apk/{id}

Usage and SDK Samples

curl -X DELETE\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/delete/apk/{id}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ApkManagerApi;

import java.io.File;
import java.util.*;

public class ApkManagerApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ApkManagerApi apiInstance = new ApkManagerApi();
        Integer id = 56; // Integer |  ID de Player Apk que realiza la petición.
        try {
            apiInstance.deleteApkManagerApk(id);
        } catch (ApiException e) {
            System.err.println("Exception when calling ApkManagerApi#deleteApkManagerApk");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ApkManagerApi;

public class ApkManagerApiExample {

    public static void main(String[] args) {
        ApkManagerApi apiInstance = new ApkManagerApi();
        Integer id = 56; // Integer |  ID de Player Apk que realiza la petición.
        try {
            apiInstance.deleteApkManagerApk(id);
        } catch (ApiException e) {
            System.err.println("Exception when calling ApkManagerApi#deleteApkManagerApk");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *id = 56; //  ID de Player Apk que realiza la petición.

ApkManagerApi *apiInstance = [[ApkManagerApi alloc] init];

[apiInstance deleteApkManagerApkWith:id
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.ApkManagerApi()
var id = 56; // {{Integer}}  ID de Player Apk que realiza la petición.

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.deleteApkManagerApk(id, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class deleteApkManagerApkExample
    {
        public void main()
        {


            var apiInstance = new ApkManagerApi();
            var id = 56;  // Integer |  ID de Player Apk que realiza la petición.

            try
            {
                apiInstance.deleteApkManagerApk(id);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ApkManagerApi.deleteApkManagerApk: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiApkManagerApi();
$id = 56; // Integer |  ID de Player Apk que realiza la petición.

try {
    $api_instance->deleteApkManagerApk($id);
} catch (Exception $e) {
    echo 'Exception when calling ApkManagerApi->deleteApkManagerApk: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ApkManagerApi;


my $api_instance = WWW::SwaggerClient::ApkManagerApi->new();
my $id = 56; # Integer |  ID de Player Apk que realiza la petición.

eval { 
    $api_instance->deleteApkManagerApk(id => $id);
};
if ($@) {
    warn "Exception when calling ApkManagerApi->deleteApkManagerApk: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ApkManagerApi()
id = 56 # Integer |  ID de Player Apk que realiza la petición.

try: 
    api_instance.delete_apk_manager_apk(id)
except ApiException as e:
    print("Exception when calling ApkManagerApi->deleteApkManagerApk: %s\n" % e)

Parameters

Path parameters
Name Description
id*
Integer
ID de Player Apk que realiza la petición.
Required

Responses

Status: 200 - Confirmación de acción.

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


putApkManagerUpdateApkEditorShow

Actualizar el estado del campo de si debe mostrarse el registro en la ficha de player.


/update/apk/{id}/playerEditShow

Usage and SDK Samples

curl -X PUT\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
-H "Content-Type: text/plain"\
"https://{env}.nsign.tv/update/apk/{id}/playerEditShow"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ApkManagerApi;

import java.io.File;
import java.util.*;

public class ApkManagerApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ApkManagerApi apiInstance = new ApkManagerApi();
        Integer id = 56; // Integer |  Id de aplicaiones.
        try {
            apiInstance.putApkManagerUpdateApkEditorShow(id);
        } catch (ApiException e) {
            System.err.println("Exception when calling ApkManagerApi#putApkManagerUpdateApkEditorShow");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ApkManagerApi;

public class ApkManagerApiExample {

    public static void main(String[] args) {
        ApkManagerApi apiInstance = new ApkManagerApi();
        Integer id = 56; // Integer |  Id de aplicaiones.
        try {
            apiInstance.putApkManagerUpdateApkEditorShow(id);
        } catch (ApiException e) {
            System.err.println("Exception when calling ApkManagerApi#putApkManagerUpdateApkEditorShow");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *id = 56; //  Id de aplicaiones.

ApkManagerApi *apiInstance = [[ApkManagerApi alloc] init];

[apiInstance putApkManagerUpdateApkEditorShowWith:id
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.ApkManagerApi()
var id = 56; // {{Integer}}  Id de aplicaiones.

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.putApkManagerUpdateApkEditorShow(id, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class putApkManagerUpdateApkEditorShowExample
    {
        public void main()
        {


            var apiInstance = new ApkManagerApi();
            var id = 56;  // Integer |  Id de aplicaiones.

            try
            {
                apiInstance.putApkManagerUpdateApkEditorShow(id);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ApkManagerApi.putApkManagerUpdateApkEditorShow: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiApkManagerApi();
$id = 56; // Integer |  Id de aplicaiones.

try {
    $api_instance->putApkManagerUpdateApkEditorShow($id);
} catch (Exception $e) {
    echo 'Exception when calling ApkManagerApi->putApkManagerUpdateApkEditorShow: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ApkManagerApi;


my $api_instance = WWW::SwaggerClient::ApkManagerApi->new();
my $id = 56; # Integer |  Id de aplicaiones.

eval { 
    $api_instance->putApkManagerUpdateApkEditorShow(id => $id);
};
if ($@) {
    warn "Exception when calling ApkManagerApi->putApkManagerUpdateApkEditorShow: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ApkManagerApi()
id = 56 # Integer |  Id de aplicaiones.

try: 
    api_instance.put_apk_manager_update_apk_editor_show(id)
except ApiException as e:
    print("Exception when calling ApkManagerApi->putApkManagerUpdateApkEditorShow: %s\n" % e)

Parameters

Path parameters
Name Description
id*
Integer
Id de aplicaiones.
Required

Responses

Status: 200 - Guardado correctamente.

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


putApkManagerUpdateApkLatest

Actualizar el estado del campo de si debe mostrarse el registro en la ficha de player.


/update/apk/{id}/latest

Usage and SDK Samples

curl -X PUT\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
-H "Content-Type: text/plain"\
"https://{env}.nsign.tv/update/apk/{id}/latest"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ApkManagerApi;

import java.io.File;
import java.util.*;

public class ApkManagerApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ApkManagerApi apiInstance = new ApkManagerApi();
        Integer id = 56; // Integer |  Id de aplicaiones.
        try {
            apiInstance.putApkManagerUpdateApkLatest(id);
        } catch (ApiException e) {
            System.err.println("Exception when calling ApkManagerApi#putApkManagerUpdateApkLatest");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ApkManagerApi;

public class ApkManagerApiExample {

    public static void main(String[] args) {
        ApkManagerApi apiInstance = new ApkManagerApi();
        Integer id = 56; // Integer |  Id de aplicaiones.
        try {
            apiInstance.putApkManagerUpdateApkLatest(id);
        } catch (ApiException e) {
            System.err.println("Exception when calling ApkManagerApi#putApkManagerUpdateApkLatest");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *id = 56; //  Id de aplicaiones.

ApkManagerApi *apiInstance = [[ApkManagerApi alloc] init];

[apiInstance putApkManagerUpdateApkLatestWith:id
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.ApkManagerApi()
var id = 56; // {{Integer}}  Id de aplicaiones.

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.putApkManagerUpdateApkLatest(id, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class putApkManagerUpdateApkLatestExample
    {
        public void main()
        {


            var apiInstance = new ApkManagerApi();
            var id = 56;  // Integer |  Id de aplicaiones.

            try
            {
                apiInstance.putApkManagerUpdateApkLatest(id);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ApkManagerApi.putApkManagerUpdateApkLatest: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiApkManagerApi();
$id = 56; // Integer |  Id de aplicaiones.

try {
    $api_instance->putApkManagerUpdateApkLatest($id);
} catch (Exception $e) {
    echo 'Exception when calling ApkManagerApi->putApkManagerUpdateApkLatest: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ApkManagerApi;


my $api_instance = WWW::SwaggerClient::ApkManagerApi->new();
my $id = 56; # Integer |  Id de aplicaiones.

eval { 
    $api_instance->putApkManagerUpdateApkLatest(id => $id);
};
if ($@) {
    warn "Exception when calling ApkManagerApi->putApkManagerUpdateApkLatest: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ApkManagerApi()
id = 56 # Integer |  Id de aplicaiones.

try: 
    api_instance.put_apk_manager_update_apk_latest(id)
except ApiException as e:
    print("Exception when calling ApkManagerApi->putApkManagerUpdateApkLatest: %s\n" % e)

Parameters

Path parameters
Name Description
id*
Integer
Id de aplicaiones.
Required

Responses

Status: 200 - Guardado correctamente.

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


putApkManagerUpdateGroupLatest

Actualizar el estado del campo de si debe mostrarse el registro en el listado versiones finales de apps.


/update/group/{groupId}/latestListShow

Usage and SDK Samples

curl -X PUT\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
-H "Content-Type: application/json"\
"https://{env}.nsign.tv/update/group/{groupId}/latestListShow"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ApkManagerApi;

import java.io.File;
import java.util.*;

public class ApkManagerApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ApkManagerApi apiInstance = new ApkManagerApi();
        String groupId = groupId_example; // String |  Id de grup de aplicaiones.
        Resource body = ; // Resource | 
        try {
            apiInstance.putApkManagerUpdateGroupLatest(groupId, body);
        } catch (ApiException e) {
            System.err.println("Exception when calling ApkManagerApi#putApkManagerUpdateGroupLatest");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ApkManagerApi;

public class ApkManagerApiExample {

    public static void main(String[] args) {
        ApkManagerApi apiInstance = new ApkManagerApi();
        String groupId = groupId_example; // String |  Id de grup de aplicaiones.
        Resource body = ; // Resource | 
        try {
            apiInstance.putApkManagerUpdateGroupLatest(groupId, body);
        } catch (ApiException e) {
            System.err.println("Exception when calling ApkManagerApi#putApkManagerUpdateGroupLatest");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
String *groupId = groupId_example; //  Id de grup de aplicaiones.
Resource *body = ; //  (optional)

ApkManagerApi *apiInstance = [[ApkManagerApi alloc] init];

[apiInstance putApkManagerUpdateGroupLatestWith:groupId
    body:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.ApkManagerApi()
var groupId = groupId_example; // {{String}}  Id de grup de aplicaiones.
var opts = { 
  'body':  // {{Resource}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.putApkManagerUpdateGroupLatest(groupId, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class putApkManagerUpdateGroupLatestExample
    {
        public void main()
        {


            var apiInstance = new ApkManagerApi();
            var groupId = groupId_example;  // String |  Id de grup de aplicaiones.
            var body = new Resource(); // Resource |  (optional) 

            try
            {
                apiInstance.putApkManagerUpdateGroupLatest(groupId, body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ApkManagerApi.putApkManagerUpdateGroupLatest: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiApkManagerApi();
$groupId = groupId_example; // String |  Id de grup de aplicaiones.
$body = ; // Resource | 

try {
    $api_instance->putApkManagerUpdateGroupLatest($groupId, $body);
} catch (Exception $e) {
    echo 'Exception when calling ApkManagerApi->putApkManagerUpdateGroupLatest: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ApkManagerApi;


my $api_instance = WWW::SwaggerClient::ApkManagerApi->new();
my $groupId = groupId_example; # String |  Id de grup de aplicaiones.
my $body = WWW::SwaggerClient::Object::Resource->new(); # Resource | 

eval { 
    $api_instance->putApkManagerUpdateGroupLatest(groupId => $groupId, body => $body);
};
if ($@) {
    warn "Exception when calling ApkManagerApi->putApkManagerUpdateGroupLatest: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ApkManagerApi()
groupId = groupId_example # String |  Id de grup de aplicaiones.
body =  # Resource |  (optional)

try: 
    api_instance.put_apk_manager_update_group_latest(groupId, body=body)
except ApiException as e:
    print("Exception when calling ApkManagerApi->putApkManagerUpdateGroupLatest: %s\n" % e)

Parameters

Path parameters
Name Description
groupId*
String
Id de grup de aplicaiones.
Required
Body parameters
Name Description
body

Responses

Status: 200 - Guardado correctamente.

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


App

appList

Listado de modelos 'App' relacionados con el usuario que realiza la petición.


/apps

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/apps"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.AppApi;

import java.io.File;
import java.util.*;

public class AppApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        AppApi apiInstance = new AppApi();
        try {
            array[App] result = apiInstance.appList();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling AppApi#appList");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.AppApi;

public class AppApiExample {

    public static void main(String[] args) {
        AppApi apiInstance = new AppApi();
        try {
            array[App] result = apiInstance.appList();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling AppApi#appList");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];

AppApi *apiInstance = [[AppApi alloc] init];

[apiInstance appListWithCompletionHandler: 
              ^(array[App] output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.AppApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.appList(callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class appListExample
    {
        public void main()
        {


            var apiInstance = new AppApi();

            try
            {
                array[App] result = apiInstance.appList();
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling AppApi.appList: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiAppApi();

try {
    $result = $api_instance->appList();
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling AppApi->appList: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::AppApi;


my $api_instance = WWW::SwaggerClient::AppApi->new();

eval { 
    my $result = $api_instance->appList();
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling AppApi->appList: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.AppApi()

try: 
    api_response = api_instance.app_list()
    pprint(api_response)
except ApiException as e:
    print("Exception when calling AppApi->appList: %s\n" % e)

Parameters

Responses

Status: 200 - Respuesta de listado de modelos 'App'.

Status: 401 - El token no es válido


putAppToChildCustomer

Añadir app que corresponde a parametro 'inPath' {appId} para customer que corresponde a parametro 'inPath' {customerId}


/apps/customer/{customerId}/{appId}

Usage and SDK Samples

curl -X PUT\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/apps/customer/{customerId}/{appId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.AppApi;

import java.io.File;
import java.util.*;

public class AppApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        AppApi apiInstance = new AppApi();
        Integer customerId = 56; // Integer |  ID de customer relacionado con el usuario que realiza la petición.
        Integer appId = 56; // Integer | ID de app relacionado con el usuario que realiza la petición.
        try {
            App result = apiInstance.putAppToChildCustomer(customerId, appId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling AppApi#putAppToChildCustomer");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.AppApi;

public class AppApiExample {

    public static void main(String[] args) {
        AppApi apiInstance = new AppApi();
        Integer customerId = 56; // Integer |  ID de customer relacionado con el usuario que realiza la petición.
        Integer appId = 56; // Integer | ID de app relacionado con el usuario que realiza la petición.
        try {
            App result = apiInstance.putAppToChildCustomer(customerId, appId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling AppApi#putAppToChildCustomer");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *customerId = 56; //  ID de customer relacionado con el usuario que realiza la petición.
Integer *appId = 56; // ID de app relacionado con el usuario que realiza la petición.

AppApi *apiInstance = [[AppApi alloc] init];

[apiInstance putAppToChildCustomerWith:customerId
    appId:appId
              completionHandler: ^(App output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.AppApi()
var customerId = 56; // {{Integer}}  ID de customer relacionado con el usuario que realiza la petición.
var appId = 56; // {{Integer}} ID de app relacionado con el usuario que realiza la petición.

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.putAppToChildCustomer(customerId, appId, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class putAppToChildCustomerExample
    {
        public void main()
        {


            var apiInstance = new AppApi();
            var customerId = 56;  // Integer |  ID de customer relacionado con el usuario que realiza la petición.
            var appId = 56;  // Integer | ID de app relacionado con el usuario que realiza la petición.

            try
            {
                App result = apiInstance.putAppToChildCustomer(customerId, appId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling AppApi.putAppToChildCustomer: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiAppApi();
$customerId = 56; // Integer |  ID de customer relacionado con el usuario que realiza la petición.
$appId = 56; // Integer | ID de app relacionado con el usuario que realiza la petición.

try {
    $result = $api_instance->putAppToChildCustomer($customerId, $appId);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling AppApi->putAppToChildCustomer: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::AppApi;


my $api_instance = WWW::SwaggerClient::AppApi->new();
my $customerId = 56; # Integer |  ID de customer relacionado con el usuario que realiza la petición.
my $appId = 56; # Integer | ID de app relacionado con el usuario que realiza la petición.

eval { 
    my $result = $api_instance->putAppToChildCustomer(customerId => $customerId, appId => $appId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling AppApi->putAppToChildCustomer: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.AppApi()
customerId = 56 # Integer |  ID de customer relacionado con el usuario que realiza la petición.
appId = 56 # Integer | ID de app relacionado con el usuario que realiza la petición.

try: 
    api_response = api_instance.put_app_to_child_customer(customerId, appId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling AppApi->putAppToChildCustomer: %s\n" % e)

Parameters

Path parameters
Name Description
customerId*
Integer
ID de customer relacionado con el usuario que realiza la petición.
Required
appId*
Integer
ID de app relacionado con el usuario que realiza la petición.
Required

Responses

Status: 200 - Respuesta de modelo 'App'.

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


AppChild

appListChild

Listado de modelos 'App' relacionados con el customer que corresponde a parametro 'inPath' {customerId}


/apps/customer/{customerId}

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/apps/customer/{customerId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.AppChildApi;

import java.io.File;
import java.util.*;

public class AppChildApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        AppChildApi apiInstance = new AppChildApi();
         customerId = ; //  | ID de customer relacionado con el usuario que realiza la petición.
        try {
            array[App] result = apiInstance.appListChild(customerId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling AppChildApi#appListChild");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.AppChildApi;

public class AppChildApiExample {

    public static void main(String[] args) {
        AppChildApi apiInstance = new AppChildApi();
         customerId = ; //  | ID de customer relacionado con el usuario que realiza la petición.
        try {
            array[App] result = apiInstance.appListChild(customerId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling AppChildApi#appListChild");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
 *customerId = ; // ID de customer relacionado con el usuario que realiza la petición.

AppChildApi *apiInstance = [[AppChildApi alloc] init];

[apiInstance appListChildWith:customerId
              completionHandler: ^(array[App] output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.AppChildApi()
var customerId = ; // {{}} ID de customer relacionado con el usuario que realiza la petición.

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.appListChild(customerId, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class appListChildExample
    {
        public void main()
        {


            var apiInstance = new AppChildApi();
            var customerId = new (); //  | ID de customer relacionado con el usuario que realiza la petición.

            try
            {
                array[App] result = apiInstance.appListChild(customerId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling AppChildApi.appListChild: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiAppChildApi();
$customerId = ; //  | ID de customer relacionado con el usuario que realiza la petición.

try {
    $result = $api_instance->appListChild($customerId);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling AppChildApi->appListChild: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::AppChildApi;


my $api_instance = WWW::SwaggerClient::AppChildApi->new();
my $customerId = ; #  | ID de customer relacionado con el usuario que realiza la petición.

eval { 
    my $result = $api_instance->appListChild(customerId => $customerId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling AppChildApi->appListChild: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.AppChildApi()
customerId =  #  | ID de customer relacionado con el usuario que realiza la petición.

try: 
    api_response = api_instance.app_list_child(customerId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling AppChildApi->appListChild: %s\n" % e)

Parameters

Path parameters
Name Description
customerId*
ID de customer relacionado con el usuario que realiza la petición.
Required

Responses

Status: 200 - Respuesta de listado de modelos 'App'.

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


Auth

userToken

Devuelve el token de usuario con una validez determinada 8h.


/user/token

Usage and SDK Samples

curl -X POST\
-H "Accept: application/json"\
-H "Content-Type: application/json"\
"https://{env}.nsign.tv/user/token"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.AuthApi;

import java.io.File;
import java.util.*;

public class AuthApiExample {

    public static void main(String[] args) {
        
        AuthApi apiInstance = new AuthApi();
        User_token_body body = ; // User_token_body | 
        try {
            inline_response_200 result = apiInstance.userToken(body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling AuthApi#userToken");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.AuthApi;

public class AuthApiExample {

    public static void main(String[] args) {
        AuthApi apiInstance = new AuthApi();
        User_token_body body = ; // User_token_body | 
        try {
            inline_response_200 result = apiInstance.userToken(body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling AuthApi#userToken");
            e.printStackTrace();
        }
    }
}
User_token_body *body = ; //  (optional)

AuthApi *apiInstance = [[AuthApi alloc] init];

[apiInstance userTokenWith:body
              completionHandler: ^(inline_response_200 output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');

var api = new ApiPlataformaNsign.AuthApi()
var opts = { 
  'body':  // {{User_token_body}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.userToken(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class userTokenExample
    {
        public void main()
        {

            var apiInstance = new AuthApi();
            var body = new User_token_body(); // User_token_body |  (optional) 

            try
            {
                inline_response_200 result = apiInstance.userToken(body);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling AuthApi.userToken: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiAuthApi();
$body = ; // User_token_body | 

try {
    $result = $api_instance->userToken($body);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling AuthApi->userToken: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::AuthApi;

my $api_instance = WWW::SwaggerClient::AuthApi->new();
my $body = WWW::SwaggerClient::Object::User_token_body->new(); # User_token_body | 

eval { 
    my $result = $api_instance->userToken(body => $body);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling AuthApi->userToken: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# create an instance of the API class
api_instance = swagger_client.AuthApi()
body =  # User_token_body |  (optional)

try: 
    api_response = api_instance.user_token(body=body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling AuthApi->userToken: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - Si credenciales estan correctas se devuelve el token

Status: 401 - El token no es válido


Customer

createCustomerInChild

Crear un nuevo modelo 'Customer' para customer que corresponde a parametro 'inPath' {customerId}


/customer/{customerId}

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
-H "Content-Type: application/json"\
"https://{env}.nsign.tv/customer/{customerId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.CustomerApi;

import java.io.File;
import java.util.*;

public class CustomerApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        CustomerApi apiInstance = new CustomerApi();
        Integer customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
        CustomerPost body = ; // CustomerPost | 
        try {
            CustomerGet result = apiInstance.createCustomerInChild(customerId, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling CustomerApi#createCustomerInChild");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.CustomerApi;

public class CustomerApiExample {

    public static void main(String[] args) {
        CustomerApi apiInstance = new CustomerApi();
        Integer customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
        CustomerPost body = ; // CustomerPost | 
        try {
            CustomerGet result = apiInstance.createCustomerInChild(customerId, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling CustomerApi#createCustomerInChild");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *customerId = 56; // ID de customer relacionado con el usuario que realiza la petición.
CustomerPost *body = ; //  (optional)

CustomerApi *apiInstance = [[CustomerApi alloc] init];

[apiInstance createCustomerInChildWith:customerId
    body:body
              completionHandler: ^(CustomerGet output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.CustomerApi()
var customerId = 56; // {{Integer}} ID de customer relacionado con el usuario que realiza la petición.
var opts = { 
  'body':  // {{CustomerPost}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.createCustomerInChild(customerId, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class createCustomerInChildExample
    {
        public void main()
        {


            var apiInstance = new CustomerApi();
            var customerId = 56;  // Integer | ID de customer relacionado con el usuario que realiza la petición.
            var body = new CustomerPost(); // CustomerPost |  (optional) 

            try
            {
                CustomerGet result = apiInstance.createCustomerInChild(customerId, body);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling CustomerApi.createCustomerInChild: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiCustomerApi();
$customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
$body = ; // CustomerPost | 

try {
    $result = $api_instance->createCustomerInChild($customerId, $body);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling CustomerApi->createCustomerInChild: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::CustomerApi;


my $api_instance = WWW::SwaggerClient::CustomerApi->new();
my $customerId = 56; # Integer | ID de customer relacionado con el usuario que realiza la petición.
my $body = WWW::SwaggerClient::Object::CustomerPost->new(); # CustomerPost | 

eval { 
    my $result = $api_instance->createCustomerInChild(customerId => $customerId, body => $body);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling CustomerApi->createCustomerInChild: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.CustomerApi()
customerId = 56 # Integer | ID de customer relacionado con el usuario que realiza la petición.
body =  # CustomerPost |  (optional)

try: 
    api_response = api_instance.create_customer_in_child(customerId, body=body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling CustomerApi->createCustomerInChild: %s\n" % e)

Parameters

Path parameters
Name Description
customerId*
Integer
ID de customer relacionado con el usuario que realiza la petición.
Required
Body parameters
Name Description
body

Responses

Status: 200 - Respuesta de modelo 'CustomerGet'

Status: 400 - Los parametros incompatibles

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


customerDelete

Eliminar el modelo 'Customer' relacionado con el usuario que realiza la petición.


/customer/{customerId}

Usage and SDK Samples

curl -X DELETE\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/customer/{customerId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.CustomerApi;

import java.io.File;
import java.util.*;

public class CustomerApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        CustomerApi apiInstance = new CustomerApi();
        Integer customerId = 56; // Integer | ID de modelo 'Customer' relacionado con el usuario que realiza la petición.
        try {
            apiInstance.customerDelete(customerId);
        } catch (ApiException e) {
            System.err.println("Exception when calling CustomerApi#customerDelete");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.CustomerApi;

public class CustomerApiExample {

    public static void main(String[] args) {
        CustomerApi apiInstance = new CustomerApi();
        Integer customerId = 56; // Integer | ID de modelo 'Customer' relacionado con el usuario que realiza la petición.
        try {
            apiInstance.customerDelete(customerId);
        } catch (ApiException e) {
            System.err.println("Exception when calling CustomerApi#customerDelete");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *customerId = 56; // ID de modelo 'Customer' relacionado con el usuario que realiza la petición.

CustomerApi *apiInstance = [[CustomerApi alloc] init];

[apiInstance customerDeleteWith:customerId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.CustomerApi()
var customerId = 56; // {{Integer}} ID de modelo 'Customer' relacionado con el usuario que realiza la petición.

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.customerDelete(customerId, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class customerDeleteExample
    {
        public void main()
        {


            var apiInstance = new CustomerApi();
            var customerId = 56;  // Integer | ID de modelo 'Customer' relacionado con el usuario que realiza la petición.

            try
            {
                apiInstance.customerDelete(customerId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling CustomerApi.customerDelete: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiCustomerApi();
$customerId = 56; // Integer | ID de modelo 'Customer' relacionado con el usuario que realiza la petición.

try {
    $api_instance->customerDelete($customerId);
} catch (Exception $e) {
    echo 'Exception when calling CustomerApi->customerDelete: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::CustomerApi;


my $api_instance = WWW::SwaggerClient::CustomerApi->new();
my $customerId = 56; # Integer | ID de modelo 'Customer' relacionado con el usuario que realiza la petición.

eval { 
    $api_instance->customerDelete(customerId => $customerId);
};
if ($@) {
    warn "Exception when calling CustomerApi->customerDelete: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.CustomerApi()
customerId = 56 # Integer | ID de modelo 'Customer' relacionado con el usuario que realiza la petición.

try: 
    api_instance.customer_delete(customerId)
except ApiException as e:
    print("Exception when calling CustomerApi->customerDelete: %s\n" % e)

Parameters

Path parameters
Name Description
customerId*
Integer
ID de modelo 'Customer' relacionado con el usuario que realiza la petición.
Required

Responses

Status: 200 - Confirmación de acción.

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


getActivitytimetablesCustomer

Horarios disponibles en la plataforma NSIGN.


/customer/{customerId}/timetables

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/customer/{customerId}/timetables"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.CustomerApi;

import java.io.File;
import java.util.*;

public class CustomerApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        CustomerApi apiInstance = new CustomerApi();
        Integer customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
        try {
            ActivityTimetable result = apiInstance.getActivitytimetablesCustomer(customerId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling CustomerApi#getActivitytimetablesCustomer");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.CustomerApi;

public class CustomerApiExample {

    public static void main(String[] args) {
        CustomerApi apiInstance = new CustomerApi();
        Integer customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
        try {
            ActivityTimetable result = apiInstance.getActivitytimetablesCustomer(customerId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling CustomerApi#getActivitytimetablesCustomer");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *customerId = 56; // ID de customer relacionado con el usuario que realiza la petición.

CustomerApi *apiInstance = [[CustomerApi alloc] init];

[apiInstance getActivitytimetablesCustomerWith:customerId
              completionHandler: ^(ActivityTimetable output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.CustomerApi()
var customerId = 56; // {{Integer}} ID de customer relacionado con el usuario que realiza la petición.

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.getActivitytimetablesCustomer(customerId, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class getActivitytimetablesCustomerExample
    {
        public void main()
        {


            var apiInstance = new CustomerApi();
            var customerId = 56;  // Integer | ID de customer relacionado con el usuario que realiza la petición.

            try
            {
                ActivityTimetable result = apiInstance.getActivitytimetablesCustomer(customerId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling CustomerApi.getActivitytimetablesCustomer: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiCustomerApi();
$customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.

try {
    $result = $api_instance->getActivitytimetablesCustomer($customerId);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling CustomerApi->getActivitytimetablesCustomer: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::CustomerApi;


my $api_instance = WWW::SwaggerClient::CustomerApi->new();
my $customerId = 56; # Integer | ID de customer relacionado con el usuario que realiza la petición.

eval { 
    my $result = $api_instance->getActivitytimetablesCustomer(customerId => $customerId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling CustomerApi->getActivitytimetablesCustomer: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.CustomerApi()
customerId = 56 # Integer | ID de customer relacionado con el usuario que realiza la petición.

try: 
    api_response = api_instance.get_activitytimetables_customer(customerId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling CustomerApi->getActivitytimetablesCustomer: %s\n" % e)

Parameters

Path parameters
Name Description
customerId*
Integer
ID de customer relacionado con el usuario que realiza la petición.
Required

Responses

Status: 200 - Respuesta de listado de modelos 'ActivityTimetable'

Status: 401 - El token no es válido


getCustomerChild

Información completa de modelo 'CustomerGet' que corresponde a parametro 'inPath' {customerId}.


/customer/{customerId}

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/customer/{customerId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.CustomerApi;

import java.io.File;
import java.util.*;

public class CustomerApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        CustomerApi apiInstance = new CustomerApi();
        Integer customerId = 56; // Integer | ID de modelo 'Customer' relacionado con el usuario que realiza la petición.
        try {
            CustomerGet result = apiInstance.getCustomerChild(customerId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling CustomerApi#getCustomerChild");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.CustomerApi;

public class CustomerApiExample {

    public static void main(String[] args) {
        CustomerApi apiInstance = new CustomerApi();
        Integer customerId = 56; // Integer | ID de modelo 'Customer' relacionado con el usuario que realiza la petición.
        try {
            CustomerGet result = apiInstance.getCustomerChild(customerId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling CustomerApi#getCustomerChild");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *customerId = 56; // ID de modelo 'Customer' relacionado con el usuario que realiza la petición.

CustomerApi *apiInstance = [[CustomerApi alloc] init];

[apiInstance getCustomerChildWith:customerId
              completionHandler: ^(CustomerGet output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.CustomerApi()
var customerId = 56; // {{Integer}} ID de modelo 'Customer' relacionado con el usuario que realiza la petición.

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.getCustomerChild(customerId, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class getCustomerChildExample
    {
        public void main()
        {


            var apiInstance = new CustomerApi();
            var customerId = 56;  // Integer | ID de modelo 'Customer' relacionado con el usuario que realiza la petición.

            try
            {
                CustomerGet result = apiInstance.getCustomerChild(customerId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling CustomerApi.getCustomerChild: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiCustomerApi();
$customerId = 56; // Integer | ID de modelo 'Customer' relacionado con el usuario que realiza la petición.

try {
    $result = $api_instance->getCustomerChild($customerId);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling CustomerApi->getCustomerChild: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::CustomerApi;


my $api_instance = WWW::SwaggerClient::CustomerApi->new();
my $customerId = 56; # Integer | ID de modelo 'Customer' relacionado con el usuario que realiza la petición.

eval { 
    my $result = $api_instance->getCustomerChild(customerId => $customerId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling CustomerApi->getCustomerChild: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.CustomerApi()
customerId = 56 # Integer | ID de modelo 'Customer' relacionado con el usuario que realiza la petición.

try: 
    api_response = api_instance.get_customer_child(customerId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling CustomerApi->getCustomerChild: %s\n" % e)

Parameters

Path parameters
Name Description
customerId*
Integer
ID de modelo 'Customer' relacionado con el usuario que realiza la petición.
Required

Responses

Status: 200 - Respuesta de modelo 'CustomerGet'

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


getCustomerChilds

Arbol de modelos 'CustomerList' relacionados con el usuario que realiza la petición.


/customers

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/customers"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.CustomerApi;

import java.io.File;
import java.util.*;

public class CustomerApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        CustomerApi apiInstance = new CustomerApi();
        try {
            array[CustomerList] result = apiInstance.getCustomerChilds();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling CustomerApi#getCustomerChilds");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.CustomerApi;

public class CustomerApiExample {

    public static void main(String[] args) {
        CustomerApi apiInstance = new CustomerApi();
        try {
            array[CustomerList] result = apiInstance.getCustomerChilds();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling CustomerApi#getCustomerChilds");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];

CustomerApi *apiInstance = [[CustomerApi alloc] init];

[apiInstance getCustomerChildsWithCompletionHandler: 
              ^(array[CustomerList] output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.CustomerApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.getCustomerChilds(callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class getCustomerChildsExample
    {
        public void main()
        {


            var apiInstance = new CustomerApi();

            try
            {
                array[CustomerList] result = apiInstance.getCustomerChilds();
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling CustomerApi.getCustomerChilds: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiCustomerApi();

try {
    $result = $api_instance->getCustomerChilds();
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling CustomerApi->getCustomerChilds: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::CustomerApi;


my $api_instance = WWW::SwaggerClient::CustomerApi->new();

eval { 
    my $result = $api_instance->getCustomerChilds();
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling CustomerApi->getCustomerChilds: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.CustomerApi()

try: 
    api_response = api_instance.get_customer_childs()
    pprint(api_response)
except ApiException as e:
    print("Exception when calling CustomerApi->getCustomerChilds: %s\n" % e)

Parameters

Responses

Status: 200 - Respuesta de listado de modelos 'CustomerList'

Status: 401 - El token no es válido


getCustomerChildsApiKey

Arbol de modelos 'CustomerList' relacionados con el usuario que realiza la petición. Acceso con apiKey


/stateless/customers

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/stateless/customers"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.CustomerApi;

import java.io.File;
import java.util.*;

public class CustomerApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        CustomerApi apiInstance = new CustomerApi();
        try {
            array[CustomerList] result = apiInstance.getCustomerChildsApiKey();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling CustomerApi#getCustomerChildsApiKey");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.CustomerApi;

public class CustomerApiExample {

    public static void main(String[] args) {
        CustomerApi apiInstance = new CustomerApi();
        try {
            array[CustomerList] result = apiInstance.getCustomerChildsApiKey();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling CustomerApi#getCustomerChildsApiKey");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];

CustomerApi *apiInstance = [[CustomerApi alloc] init];

[apiInstance getCustomerChildsApiKeyWithCompletionHandler: 
              ^(array[CustomerList] output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.CustomerApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.getCustomerChildsApiKey(callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class getCustomerChildsApiKeyExample
    {
        public void main()
        {


            var apiInstance = new CustomerApi();

            try
            {
                array[CustomerList] result = apiInstance.getCustomerChildsApiKey();
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling CustomerApi.getCustomerChildsApiKey: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiCustomerApi();

try {
    $result = $api_instance->getCustomerChildsApiKey();
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling CustomerApi->getCustomerChildsApiKey: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::CustomerApi;


my $api_instance = WWW::SwaggerClient::CustomerApi->new();

eval { 
    my $result = $api_instance->getCustomerChildsApiKey();
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling CustomerApi->getCustomerChildsApiKey: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.CustomerApi()

try: 
    api_response = api_instance.get_customer_childs_api_key()
    pprint(api_response)
except ApiException as e:
    print("Exception when calling CustomerApi->getCustomerChildsApiKey: %s\n" % e)

Parameters

Responses

Status: 200 - Respuesta de listado de modelos 'CustomerList'

Status: 401 - El token no es válido


getIndustriesCustomer

Industrias disponibles en la plataforma NSIGN.


/customer/industries

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/customer/industries"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.CustomerApi;

import java.io.File;
import java.util.*;

public class CustomerApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        CustomerApi apiInstance = new CustomerApi();
        try {
            CustomerIndustry result = apiInstance.getIndustriesCustomer();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling CustomerApi#getIndustriesCustomer");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.CustomerApi;

public class CustomerApiExample {

    public static void main(String[] args) {
        CustomerApi apiInstance = new CustomerApi();
        try {
            CustomerIndustry result = apiInstance.getIndustriesCustomer();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling CustomerApi#getIndustriesCustomer");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];

CustomerApi *apiInstance = [[CustomerApi alloc] init];

[apiInstance getIndustriesCustomerWithCompletionHandler: 
              ^(CustomerIndustry output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.CustomerApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.getIndustriesCustomer(callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class getIndustriesCustomerExample
    {
        public void main()
        {


            var apiInstance = new CustomerApi();

            try
            {
                CustomerIndustry result = apiInstance.getIndustriesCustomer();
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling CustomerApi.getIndustriesCustomer: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiCustomerApi();

try {
    $result = $api_instance->getIndustriesCustomer();
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling CustomerApi->getIndustriesCustomer: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::CustomerApi;


my $api_instance = WWW::SwaggerClient::CustomerApi->new();

eval { 
    my $result = $api_instance->getIndustriesCustomer();
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling CustomerApi->getIndustriesCustomer: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.CustomerApi()

try: 
    api_response = api_instance.get_industries_customer()
    pprint(api_response)
except ApiException as e:
    print("Exception when calling CustomerApi->getIndustriesCustomer: %s\n" % e)

Parameters

Responses

Status: 200 - Respuesta de listado de modelos 'CustomerIndustry'

Status: 401 - El token no es válido


postCustomer

Crear un nuevo modelo 'Customer' relacionado con customer que esta relacionado con el usuario que realiza la petición.


/customer

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
-H "Content-Type: application/json"\
"https://{env}.nsign.tv/customer"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.CustomerApi;

import java.io.File;
import java.util.*;

public class CustomerApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        CustomerApi apiInstance = new CustomerApi();
        Customer body = ; // Customer | 
        try {
            CustomerGet result = apiInstance.postCustomer(body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling CustomerApi#postCustomer");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.CustomerApi;

public class CustomerApiExample {

    public static void main(String[] args) {
        CustomerApi apiInstance = new CustomerApi();
        Customer body = ; // Customer | 
        try {
            CustomerGet result = apiInstance.postCustomer(body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling CustomerApi#postCustomer");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Customer *body = ; //  (optional)

CustomerApi *apiInstance = [[CustomerApi alloc] init];

[apiInstance postCustomerWith:body
              completionHandler: ^(CustomerGet output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.CustomerApi()
var opts = { 
  'body':  // {{Customer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.postCustomer(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class postCustomerExample
    {
        public void main()
        {


            var apiInstance = new CustomerApi();
            var body = new Customer(); // Customer |  (optional) 

            try
            {
                CustomerGet result = apiInstance.postCustomer(body);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling CustomerApi.postCustomer: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiCustomerApi();
$body = ; // Customer | 

try {
    $result = $api_instance->postCustomer($body);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling CustomerApi->postCustomer: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::CustomerApi;


my $api_instance = WWW::SwaggerClient::CustomerApi->new();
my $body = WWW::SwaggerClient::Object::Customer->new(); # Customer | 

eval { 
    my $result = $api_instance->postCustomer(body => $body);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling CustomerApi->postCustomer: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.CustomerApi()
body =  # Customer |  (optional)

try: 
    api_response = api_instance.post_customer(body=body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling CustomerApi->postCustomer: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - El customer creado.

Status: 401 - El token no es válido


putCustomerChild

Editar el modelo 'Customer' que corresponde a parametro 'inPath' {customerId}


/customer/{customerId}

Usage and SDK Samples

curl -X PUT\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
-H "Content-Type: application/json"\
"https://{env}.nsign.tv/customer/{customerId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.CustomerApi;

import java.io.File;
import java.util.*;

public class CustomerApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        CustomerApi apiInstance = new CustomerApi();
        Integer customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
        CustomerPost body = ; // CustomerPost | 
        try {
            CustomerGet result = apiInstance.putCustomerChild(customerId, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling CustomerApi#putCustomerChild");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.CustomerApi;

public class CustomerApiExample {

    public static void main(String[] args) {
        CustomerApi apiInstance = new CustomerApi();
        Integer customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
        CustomerPost body = ; // CustomerPost | 
        try {
            CustomerGet result = apiInstance.putCustomerChild(customerId, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling CustomerApi#putCustomerChild");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *customerId = 56; // ID de customer relacionado con el usuario que realiza la petición.
CustomerPost *body = ; //  (optional)

CustomerApi *apiInstance = [[CustomerApi alloc] init];

[apiInstance putCustomerChildWith:customerId
    body:body
              completionHandler: ^(CustomerGet output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.CustomerApi()
var customerId = 56; // {{Integer}} ID de customer relacionado con el usuario que realiza la petición.
var opts = { 
  'body':  // {{CustomerPost}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.putCustomerChild(customerId, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class putCustomerChildExample
    {
        public void main()
        {


            var apiInstance = new CustomerApi();
            var customerId = 56;  // Integer | ID de customer relacionado con el usuario que realiza la petición.
            var body = new CustomerPost(); // CustomerPost |  (optional) 

            try
            {
                CustomerGet result = apiInstance.putCustomerChild(customerId, body);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling CustomerApi.putCustomerChild: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiCustomerApi();
$customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
$body = ; // CustomerPost | 

try {
    $result = $api_instance->putCustomerChild($customerId, $body);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling CustomerApi->putCustomerChild: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::CustomerApi;


my $api_instance = WWW::SwaggerClient::CustomerApi->new();
my $customerId = 56; # Integer | ID de customer relacionado con el usuario que realiza la petición.
my $body = WWW::SwaggerClient::Object::CustomerPost->new(); # CustomerPost | 

eval { 
    my $result = $api_instance->putCustomerChild(customerId => $customerId, body => $body);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling CustomerApi->putCustomerChild: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.CustomerApi()
customerId = 56 # Integer | ID de customer relacionado con el usuario que realiza la petición.
body =  # CustomerPost |  (optional)

try: 
    api_response = api_instance.put_customer_child(customerId, body=body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling CustomerApi->putCustomerChild: %s\n" % e)

Parameters

Path parameters
Name Description
customerId*
Integer
ID de customer relacionado con el usuario que realiza la petición.
Required
Body parameters
Name Description
body

Responses

Status: 200 - Respuesta de modelo 'CustomerGet'

Status: 400 - Los parametros incompatibles

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


userCustomer

La información completa del customer relacionado con usuario que realiza la petición.


/customer

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/customer"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.CustomerApi;

import java.io.File;
import java.util.*;

public class CustomerApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        CustomerApi apiInstance = new CustomerApi();
        try {
            CustomerGet result = apiInstance.userCustomer();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling CustomerApi#userCustomer");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.CustomerApi;

public class CustomerApiExample {

    public static void main(String[] args) {
        CustomerApi apiInstance = new CustomerApi();
        try {
            CustomerGet result = apiInstance.userCustomer();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling CustomerApi#userCustomer");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];

CustomerApi *apiInstance = [[CustomerApi alloc] init];

[apiInstance userCustomerWithCompletionHandler: 
              ^(CustomerGet output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.CustomerApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.userCustomer(callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class userCustomerExample
    {
        public void main()
        {


            var apiInstance = new CustomerApi();

            try
            {
                CustomerGet result = apiInstance.userCustomer();
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling CustomerApi.userCustomer: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiCustomerApi();

try {
    $result = $api_instance->userCustomer();
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling CustomerApi->userCustomer: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::CustomerApi;


my $api_instance = WWW::SwaggerClient::CustomerApi->new();

eval { 
    my $result = $api_instance->userCustomer();
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling CustomerApi->userCustomer: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.CustomerApi()

try: 
    api_response = api_instance.user_customer()
    pprint(api_response)
except ApiException as e:
    print("Exception when calling CustomerApi->userCustomer: %s\n" % e)

Parameters

Responses

Status: 200 - Respuesta de modelo 'CustomerGet'

Status: 401 - El token no es válido


CustomerLocations

locationsListChild

Listado de espacios para el customer especificado {customerId}


/locations/customer/{customerId}

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/locations/customer/{customerId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.CustomerLocationsApi;

import java.io.File;
import java.util.*;

public class CustomerLocationsApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        CustomerLocationsApi apiInstance = new CustomerLocationsApi();
         customerId = ; //  | ID de customer relacionado con el usuario que realiza la petición.
        try {
            array[App] result = apiInstance.locationsListChild(customerId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling CustomerLocationsApi#locationsListChild");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.CustomerLocationsApi;

public class CustomerLocationsApiExample {

    public static void main(String[] args) {
        CustomerLocationsApi apiInstance = new CustomerLocationsApi();
         customerId = ; //  | ID de customer relacionado con el usuario que realiza la petición.
        try {
            array[App] result = apiInstance.locationsListChild(customerId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling CustomerLocationsApi#locationsListChild");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
 *customerId = ; // ID de customer relacionado con el usuario que realiza la petición.

CustomerLocationsApi *apiInstance = [[CustomerLocationsApi alloc] init];

[apiInstance locationsListChildWith:customerId
              completionHandler: ^(array[App] output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.CustomerLocationsApi()
var customerId = ; // {{}} ID de customer relacionado con el usuario que realiza la petición.

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.locationsListChild(customerId, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class locationsListChildExample
    {
        public void main()
        {


            var apiInstance = new CustomerLocationsApi();
            var customerId = new (); //  | ID de customer relacionado con el usuario que realiza la petición.

            try
            {
                array[App] result = apiInstance.locationsListChild(customerId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling CustomerLocationsApi.locationsListChild: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiCustomerLocationsApi();
$customerId = ; //  | ID de customer relacionado con el usuario que realiza la petición.

try {
    $result = $api_instance->locationsListChild($customerId);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling CustomerLocationsApi->locationsListChild: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::CustomerLocationsApi;


my $api_instance = WWW::SwaggerClient::CustomerLocationsApi->new();
my $customerId = ; #  | ID de customer relacionado con el usuario que realiza la petición.

eval { 
    my $result = $api_instance->locationsListChild(customerId => $customerId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling CustomerLocationsApi->locationsListChild: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.CustomerLocationsApi()
customerId =  #  | ID de customer relacionado con el usuario que realiza la petición.

try: 
    api_response = api_instance.locations_list_child(customerId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling CustomerLocationsApi->locationsListChild: %s\n" % e)

Parameters

Path parameters
Name Description
customerId*
ID de customer relacionado con el usuario que realiza la petición.
Required

Responses

Status: 200 - Respuesta de listado de espacios de cliente.

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


DownloadApp

downloadAppLatestGet

Descarga la app según el {identifier}.


/latest/{identifier}

Usage and SDK Samples

curl -X GET\
"https://{env}.nsign.tv/latest/{identifier}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DownloadAppApi;

import java.io.File;
import java.util.*;

public class DownloadAppApiExample {

    public static void main(String[] args) {
        
        DownloadAppApi apiInstance = new DownloadAppApi();
        String identifier = identifier_example; // String | Identificador único para tipo de player.
        try {
            apiInstance.downloadAppLatestGet(identifier);
        } catch (ApiException e) {
            System.err.println("Exception when calling DownloadAppApi#downloadAppLatestGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DownloadAppApi;

public class DownloadAppApiExample {

    public static void main(String[] args) {
        DownloadAppApi apiInstance = new DownloadAppApi();
        String identifier = identifier_example; // String | Identificador único para tipo de player.
        try {
            apiInstance.downloadAppLatestGet(identifier);
        } catch (ApiException e) {
            System.err.println("Exception when calling DownloadAppApi#downloadAppLatestGet");
            e.printStackTrace();
        }
    }
}
String *identifier = identifier_example; // Identificador único para tipo de player.

DownloadAppApi *apiInstance = [[DownloadAppApi alloc] init];

[apiInstance downloadAppLatestGetWith:identifier
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');

var api = new ApiPlataformaNsign.DownloadAppApi()
var identifier = identifier_example; // {{String}} Identificador único para tipo de player.

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.downloadAppLatestGet(identifier, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class downloadAppLatestGetExample
    {
        public void main()
        {

            var apiInstance = new DownloadAppApi();
            var identifier = identifier_example;  // String | Identificador único para tipo de player.

            try
            {
                apiInstance.downloadAppLatestGet(identifier);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DownloadAppApi.downloadAppLatestGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDownloadAppApi();
$identifier = identifier_example; // String | Identificador único para tipo de player.

try {
    $api_instance->downloadAppLatestGet($identifier);
} catch (Exception $e) {
    echo 'Exception when calling DownloadAppApi->downloadAppLatestGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DownloadAppApi;

my $api_instance = WWW::SwaggerClient::DownloadAppApi->new();
my $identifier = identifier_example; # String | Identificador único para tipo de player.

eval { 
    $api_instance->downloadAppLatestGet(identifier => $identifier);
};
if ($@) {
    warn "Exception when calling DownloadAppApi->downloadAppLatestGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# create an instance of the API class
api_instance = swagger_client.DownloadAppApi()
identifier = identifier_example # String | Identificador único para tipo de player.

try: 
    api_instance.download_app_latest_get(identifier)
except ApiException as e:
    print("Exception when calling DownloadAppApi->downloadAppLatestGet: %s\n" % e)

Parameters

Path parameters
Name Description
identifier*
String
Identificador único para tipo de player.
Required

Responses

Status: 200 - OK, JSON list.

Status: 302 - Redirect to link in PlayerApk repository.

Status: 404 - No identifier {identifier} found


DownloadListAppsOfLatest

downloadAppLatestList

Listado de apps para descargar.


/latest

Usage and SDK Samples

curl -X GET\
"https://{env}.nsign.tv/latest"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DownloadListAppsOfLatestApi;

import java.io.File;
import java.util.*;

public class DownloadListAppsOfLatestApiExample {

    public static void main(String[] args) {
        
        DownloadListAppsOfLatestApi apiInstance = new DownloadListAppsOfLatestApi();
        try {
            apiInstance.downloadAppLatestList();
        } catch (ApiException e) {
            System.err.println("Exception when calling DownloadListAppsOfLatestApi#downloadAppLatestList");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DownloadListAppsOfLatestApi;

public class DownloadListAppsOfLatestApiExample {

    public static void main(String[] args) {
        DownloadListAppsOfLatestApi apiInstance = new DownloadListAppsOfLatestApi();
        try {
            apiInstance.downloadAppLatestList();
        } catch (ApiException e) {
            System.err.println("Exception when calling DownloadListAppsOfLatestApi#downloadAppLatestList");
            e.printStackTrace();
        }
    }
}

DownloadListAppsOfLatestApi *apiInstance = [[DownloadListAppsOfLatestApi alloc] init];

[apiInstance downloadAppLatestListWithCompletionHandler: 
              ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');

var api = new ApiPlataformaNsign.DownloadListAppsOfLatestApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.downloadAppLatestList(callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class downloadAppLatestListExample
    {
        public void main()
        {

            var apiInstance = new DownloadListAppsOfLatestApi();

            try
            {
                apiInstance.downloadAppLatestList();
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DownloadListAppsOfLatestApi.downloadAppLatestList: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDownloadListAppsOfLatestApi();

try {
    $api_instance->downloadAppLatestList();
} catch (Exception $e) {
    echo 'Exception when calling DownloadListAppsOfLatestApi->downloadAppLatestList: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DownloadListAppsOfLatestApi;

my $api_instance = WWW::SwaggerClient::DownloadListAppsOfLatestApi->new();

eval { 
    $api_instance->downloadAppLatestList();
};
if ($@) {
    warn "Exception when calling DownloadListAppsOfLatestApi->downloadAppLatestList: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# create an instance of the API class
api_instance = swagger_client.DownloadListAppsOfLatestApi()

try: 
    api_instance.download_app_latest_list()
except ApiException as e:
    print("Exception when calling DownloadListAppsOfLatestApi->downloadAppLatestList: %s\n" % e)

Parameters

Responses

Status: 200 - OK, JSON list.


DynamicPlaylists

dynamicplaylistsList

Listado de playlist dinámicas asignadas a un player


/playlists/dynamicplaylists/player/{playerId}

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/playlists/dynamicplaylists/player/{playerId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DynamicPlaylistsApi;

import java.io.File;
import java.util.*;

public class DynamicPlaylistsApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        DynamicPlaylistsApi apiInstance = new DynamicPlaylistsApi();
        Integer playerId = 56; // Integer | ID de player para el que se realiza la petición.
        try {
            array[PlaylistNormalizer] result = apiInstance.dynamicplaylistsList(playerId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DynamicPlaylistsApi#dynamicplaylistsList");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DynamicPlaylistsApi;

public class DynamicPlaylistsApiExample {

    public static void main(String[] args) {
        DynamicPlaylistsApi apiInstance = new DynamicPlaylistsApi();
        Integer playerId = 56; // Integer | ID de player para el que se realiza la petición.
        try {
            array[PlaylistNormalizer] result = apiInstance.dynamicplaylistsList(playerId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DynamicPlaylistsApi#dynamicplaylistsList");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *playerId = 56; // ID de player para el que se realiza la petición.

DynamicPlaylistsApi *apiInstance = [[DynamicPlaylistsApi alloc] init];

[apiInstance dynamicplaylistsListWith:playerId
              completionHandler: ^(array[PlaylistNormalizer] output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.DynamicPlaylistsApi()
var playerId = 56; // {{Integer}} ID de player para el que se realiza la petición.

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.dynamicplaylistsList(playerId, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class dynamicplaylistsListExample
    {
        public void main()
        {


            var apiInstance = new DynamicPlaylistsApi();
            var playerId = 56;  // Integer | ID de player para el que se realiza la petición.

            try
            {
                array[PlaylistNormalizer] result = apiInstance.dynamicplaylistsList(playerId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DynamicPlaylistsApi.dynamicplaylistsList: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiDynamicPlaylistsApi();
$playerId = 56; // Integer | ID de player para el que se realiza la petición.

try {
    $result = $api_instance->dynamicplaylistsList($playerId);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DynamicPlaylistsApi->dynamicplaylistsList: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DynamicPlaylistsApi;


my $api_instance = WWW::SwaggerClient::DynamicPlaylistsApi->new();
my $playerId = 56; # Integer | ID de player para el que se realiza la petición.

eval { 
    my $result = $api_instance->dynamicplaylistsList(playerId => $playerId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DynamicPlaylistsApi->dynamicplaylistsList: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.DynamicPlaylistsApi()
playerId = 56 # Integer | ID de player para el que se realiza la petición.

try: 
    api_response = api_instance.dynamicplaylists_list(playerId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DynamicPlaylistsApi->dynamicplaylistsList: %s\n" % e)

Parameters

Path parameters
Name Description
playerId*
Integer
ID de player para el que se realiza la petición.
Required

Responses

Status: 200 - Respuesta de listado playlists dinámicas.

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


GetLitsOfApksApps_

apkManagerList

Listado de apps.


/list

Usage and SDK Samples

curl -X GET\
"https://{env}.nsign.tv/list"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.GetLitsOfApksApps_Api;

import java.io.File;
import java.util.*;

public class GetLitsOfApksApps_ApiExample {

    public static void main(String[] args) {
        
        GetLitsOfApksApps_Api apiInstance = new GetLitsOfApksApps_Api();
        try {
            apiInstance.apkManagerList();
        } catch (ApiException e) {
            System.err.println("Exception when calling GetLitsOfApksApps_Api#apkManagerList");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.GetLitsOfApksApps_Api;

public class GetLitsOfApksApps_ApiExample {

    public static void main(String[] args) {
        GetLitsOfApksApps_Api apiInstance = new GetLitsOfApksApps_Api();
        try {
            apiInstance.apkManagerList();
        } catch (ApiException e) {
            System.err.println("Exception when calling GetLitsOfApksApps_Api#apkManagerList");
            e.printStackTrace();
        }
    }
}

GetLitsOfApksApps_Api *apiInstance = [[GetLitsOfApksApps_Api alloc] init];

[apiInstance apkManagerListWithCompletionHandler: 
              ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');

var api = new ApiPlataformaNsign.GetLitsOfApksApps_Api()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apkManagerList(callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class apkManagerListExample
    {
        public void main()
        {

            var apiInstance = new GetLitsOfApksApps_Api();

            try
            {
                apiInstance.apkManagerList();
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling GetLitsOfApksApps_Api.apkManagerList: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiGetLitsOfApksApps_Api();

try {
    $api_instance->apkManagerList();
} catch (Exception $e) {
    echo 'Exception when calling GetLitsOfApksApps_Api->apkManagerList: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::GetLitsOfApksApps_Api;

my $api_instance = WWW::SwaggerClient::GetLitsOfApksApps_Api->new();

eval { 
    $api_instance->apkManagerList();
};
if ($@) {
    warn "Exception when calling GetLitsOfApksApps_Api->apkManagerList: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# create an instance of the API class
api_instance = swagger_client.GetLitsOfApksApps_Api()

try: 
    api_instance.apk_manager_list()
except ApiException as e:
    print("Exception when calling GetLitsOfApksApps_Api->apkManagerList: %s\n" % e)

Parameters

Responses

Status: 200 - OK, JSON list.


GlobalApps

globalAppList

Listado de modelos 'GlobalApp'


/apps/global/

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/apps/global/"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.GlobalAppsApi;

import java.io.File;
import java.util.*;

public class GlobalAppsApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        GlobalAppsApi apiInstance = new GlobalAppsApi();
        try {
            array[App] result = apiInstance.globalAppList();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling GlobalAppsApi#globalAppList");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.GlobalAppsApi;

public class GlobalAppsApiExample {

    public static void main(String[] args) {
        GlobalAppsApi apiInstance = new GlobalAppsApi();
        try {
            array[App] result = apiInstance.globalAppList();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling GlobalAppsApi#globalAppList");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];

GlobalAppsApi *apiInstance = [[GlobalAppsApi alloc] init];

[apiInstance globalAppListWithCompletionHandler: 
              ^(array[App] output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.GlobalAppsApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.globalAppList(callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class globalAppListExample
    {
        public void main()
        {


            var apiInstance = new GlobalAppsApi();

            try
            {
                array[App] result = apiInstance.globalAppList();
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling GlobalAppsApi.globalAppList: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiGlobalAppsApi();

try {
    $result = $api_instance->globalAppList();
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling GlobalAppsApi->globalAppList: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::GlobalAppsApi;


my $api_instance = WWW::SwaggerClient::GlobalAppsApi->new();

eval { 
    my $result = $api_instance->globalAppList();
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling GlobalAppsApi->globalAppList: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.GlobalAppsApi()

try: 
    api_response = api_instance.global_app_list()
    pprint(api_response)
except ApiException as e:
    print("Exception when calling GlobalAppsApi->globalAppList: %s\n" % e)

Parameters

Responses

Status: 200 - Respuesta de listado de modelos 'GlobalApp'.

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


Language

getLanguages

Idiomas disponibles en la plataforma NSIGN.


/languages

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/languages"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.LanguageApi;

import java.io.File;
import java.util.*;

public class LanguageApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        LanguageApi apiInstance = new LanguageApi();
        try {
            array[Language] result = apiInstance.getLanguages();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling LanguageApi#getLanguages");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.LanguageApi;

public class LanguageApiExample {

    public static void main(String[] args) {
        LanguageApi apiInstance = new LanguageApi();
        try {
            array[Language] result = apiInstance.getLanguages();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling LanguageApi#getLanguages");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];

LanguageApi *apiInstance = [[LanguageApi alloc] init];

[apiInstance getLanguagesWithCompletionHandler: 
              ^(array[Language] output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.LanguageApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.getLanguages(callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class getLanguagesExample
    {
        public void main()
        {


            var apiInstance = new LanguageApi();

            try
            {
                array[Language] result = apiInstance.getLanguages();
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling LanguageApi.getLanguages: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiLanguageApi();

try {
    $result = $api_instance->getLanguages();
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling LanguageApi->getLanguages: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::LanguageApi;


my $api_instance = WWW::SwaggerClient::LanguageApi->new();

eval { 
    my $result = $api_instance->getLanguages();
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling LanguageApi->getLanguages: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.LanguageApi()

try: 
    api_response = api_instance.get_languages()
    pprint(api_response)
except ApiException as e:
    print("Exception when calling LanguageApi->getLanguages: %s\n" % e)

Parameters

Responses

Status: 200 - Respuesta de listado de modelos 'Language'

Status: 401 - El token no es válido


LatestListShow

putApkManagerUpdateGroupLatest

Actualizar el estado del campo de si debe mostrarse el registro en el listado versiones finales de apps.


/update/group/{groupId}/latestListShow

Usage and SDK Samples

curl -X PUT\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
-H "Content-Type: application/json"\
"https://{env}.nsign.tv/update/group/{groupId}/latestListShow"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.LatestListShowApi;

import java.io.File;
import java.util.*;

public class LatestListShowApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        LatestListShowApi apiInstance = new LatestListShowApi();
        String groupId = groupId_example; // String |  Id de grup de aplicaiones.
        Resource body = ; // Resource | 
        try {
            apiInstance.putApkManagerUpdateGroupLatest(groupId, body);
        } catch (ApiException e) {
            System.err.println("Exception when calling LatestListShowApi#putApkManagerUpdateGroupLatest");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.LatestListShowApi;

public class LatestListShowApiExample {

    public static void main(String[] args) {
        LatestListShowApi apiInstance = new LatestListShowApi();
        String groupId = groupId_example; // String |  Id de grup de aplicaiones.
        Resource body = ; // Resource | 
        try {
            apiInstance.putApkManagerUpdateGroupLatest(groupId, body);
        } catch (ApiException e) {
            System.err.println("Exception when calling LatestListShowApi#putApkManagerUpdateGroupLatest");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
String *groupId = groupId_example; //  Id de grup de aplicaiones.
Resource *body = ; //  (optional)

LatestListShowApi *apiInstance = [[LatestListShowApi alloc] init];

[apiInstance putApkManagerUpdateGroupLatestWith:groupId
    body:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.LatestListShowApi()
var groupId = groupId_example; // {{String}}  Id de grup de aplicaiones.
var opts = { 
  'body':  // {{Resource}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.putApkManagerUpdateGroupLatest(groupId, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class putApkManagerUpdateGroupLatestExample
    {
        public void main()
        {


            var apiInstance = new LatestListShowApi();
            var groupId = groupId_example;  // String |  Id de grup de aplicaiones.
            var body = new Resource(); // Resource |  (optional) 

            try
            {
                apiInstance.putApkManagerUpdateGroupLatest(groupId, body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling LatestListShowApi.putApkManagerUpdateGroupLatest: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiLatestListShowApi();
$groupId = groupId_example; // String |  Id de grup de aplicaiones.
$body = ; // Resource | 

try {
    $api_instance->putApkManagerUpdateGroupLatest($groupId, $body);
} catch (Exception $e) {
    echo 'Exception when calling LatestListShowApi->putApkManagerUpdateGroupLatest: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::LatestListShowApi;


my $api_instance = WWW::SwaggerClient::LatestListShowApi->new();
my $groupId = groupId_example; # String |  Id de grup de aplicaiones.
my $body = WWW::SwaggerClient::Object::Resource->new(); # Resource | 

eval { 
    $api_instance->putApkManagerUpdateGroupLatest(groupId => $groupId, body => $body);
};
if ($@) {
    warn "Exception when calling LatestListShowApi->putApkManagerUpdateGroupLatest: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.LatestListShowApi()
groupId = groupId_example # String |  Id de grup de aplicaiones.
body =  # Resource |  (optional)

try: 
    api_instance.put_apk_manager_update_group_latest(groupId, body=body)
except ApiException as e:
    print("Exception when calling LatestListShowApi->putApkManagerUpdateGroupLatest: %s\n" % e)

Parameters

Path parameters
Name Description
groupId*
String
Id de grup de aplicaiones.
Required
Body parameters
Name Description
body

Responses

Status: 200 - Guardado correctamente.

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


License

licenseList

Listado de modelos 'License' relacionados con el usuario que realiza la petición.


/licenses/available

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/licenses/available"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.LicenseApi;

import java.io.File;
import java.util.*;

public class LicenseApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        LicenseApi apiInstance = new LicenseApi();
        try {
            array[License] result = apiInstance.licenseList();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling LicenseApi#licenseList");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.LicenseApi;

public class LicenseApiExample {

    public static void main(String[] args) {
        LicenseApi apiInstance = new LicenseApi();
        try {
            array[License] result = apiInstance.licenseList();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling LicenseApi#licenseList");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];

LicenseApi *apiInstance = [[LicenseApi alloc] init];

[apiInstance licenseListWithCompletionHandler: 
              ^(array[License] output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.LicenseApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.licenseList(callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class licenseListExample
    {
        public void main()
        {


            var apiInstance = new LicenseApi();

            try
            {
                array[License] result = apiInstance.licenseList();
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling LicenseApi.licenseList: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiLicenseApi();

try {
    $result = $api_instance->licenseList();
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling LicenseApi->licenseList: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::LicenseApi;


my $api_instance = WWW::SwaggerClient::LicenseApi->new();

eval { 
    my $result = $api_instance->licenseList();
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling LicenseApi->licenseList: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.LicenseApi()

try: 
    api_response = api_instance.license_list()
    pprint(api_response)
except ApiException as e:
    print("Exception when calling LicenseApi->licenseList: %s\n" % e)

Parameters

Responses

Status: 200 - Respuesta de listado de modelos 'License'.

Status: 401 - El token no es válido


putLicenseToChildCustomer

Añadir license que corresponde a parametro 'inPath' {licenseId} para customer que corresponde a parametro 'inPath' {customerId}


/license/customer/{customerId}/{licenseId}

Usage and SDK Samples

curl -X PUT\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/license/customer/{customerId}/{licenseId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.LicenseApi;

import java.io.File;
import java.util.*;

public class LicenseApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        LicenseApi apiInstance = new LicenseApi();
        Integer customerId = 56; // Integer |  ID de customer relacionado con el usuario que realiza la petición.
        Integer licenseId = 56; // Integer | ID de License relacionado con el usuario que realiza la petición.
        try {
            License result = apiInstance.putLicenseToChildCustomer(customerId, licenseId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling LicenseApi#putLicenseToChildCustomer");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.LicenseApi;

public class LicenseApiExample {

    public static void main(String[] args) {
        LicenseApi apiInstance = new LicenseApi();
        Integer customerId = 56; // Integer |  ID de customer relacionado con el usuario que realiza la petición.
        Integer licenseId = 56; // Integer | ID de License relacionado con el usuario que realiza la petición.
        try {
            License result = apiInstance.putLicenseToChildCustomer(customerId, licenseId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling LicenseApi#putLicenseToChildCustomer");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *customerId = 56; //  ID de customer relacionado con el usuario que realiza la petición.
Integer *licenseId = 56; // ID de License relacionado con el usuario que realiza la petición.

LicenseApi *apiInstance = [[LicenseApi alloc] init];

[apiInstance putLicenseToChildCustomerWith:customerId
    licenseId:licenseId
              completionHandler: ^(License output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.LicenseApi()
var customerId = 56; // {{Integer}}  ID de customer relacionado con el usuario que realiza la petición.
var licenseId = 56; // {{Integer}} ID de License relacionado con el usuario que realiza la petición.

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.putLicenseToChildCustomer(customerId, licenseId, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class putLicenseToChildCustomerExample
    {
        public void main()
        {


            var apiInstance = new LicenseApi();
            var customerId = 56;  // Integer |  ID de customer relacionado con el usuario que realiza la petición.
            var licenseId = 56;  // Integer | ID de License relacionado con el usuario que realiza la petición.

            try
            {
                License result = apiInstance.putLicenseToChildCustomer(customerId, licenseId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling LicenseApi.putLicenseToChildCustomer: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiLicenseApi();
$customerId = 56; // Integer |  ID de customer relacionado con el usuario que realiza la petición.
$licenseId = 56; // Integer | ID de License relacionado con el usuario que realiza la petición.

try {
    $result = $api_instance->putLicenseToChildCustomer($customerId, $licenseId);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling LicenseApi->putLicenseToChildCustomer: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::LicenseApi;


my $api_instance = WWW::SwaggerClient::LicenseApi->new();
my $customerId = 56; # Integer |  ID de customer relacionado con el usuario que realiza la petición.
my $licenseId = 56; # Integer | ID de License relacionado con el usuario que realiza la petición.

eval { 
    my $result = $api_instance->putLicenseToChildCustomer(customerId => $customerId, licenseId => $licenseId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling LicenseApi->putLicenseToChildCustomer: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.LicenseApi()
customerId = 56 # Integer |  ID de customer relacionado con el usuario que realiza la petición.
licenseId = 56 # Integer | ID de License relacionado con el usuario que realiza la petición.

try: 
    api_response = api_instance.put_license_to_child_customer(customerId, licenseId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling LicenseApi->putLicenseToChildCustomer: %s\n" % e)

Parameters

Path parameters
Name Description
customerId*
Integer
ID de customer relacionado con el usuario que realiza la petición.
Required
licenseId*
Integer
ID de License relacionado con el usuario que realiza la petición.
Required

Responses

Status: 200 - Respuesta de modelo 'License'.

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


LicenseChild

licenseListChild

Listado de modelos 'License' relacionados con el customer que corresponde a parametro 'inPath' {customerId}


/licenses/customer/{customerId}/available

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/licenses/customer/{customerId}/available"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.LicenseChildApi;

import java.io.File;
import java.util.*;

public class LicenseChildApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        LicenseChildApi apiInstance = new LicenseChildApi();
        Integer customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
        try {
            array[License] result = apiInstance.licenseListChild(customerId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling LicenseChildApi#licenseListChild");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.LicenseChildApi;

public class LicenseChildApiExample {

    public static void main(String[] args) {
        LicenseChildApi apiInstance = new LicenseChildApi();
        Integer customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
        try {
            array[License] result = apiInstance.licenseListChild(customerId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling LicenseChildApi#licenseListChild");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *customerId = 56; // ID de customer relacionado con el usuario que realiza la petición.

LicenseChildApi *apiInstance = [[LicenseChildApi alloc] init];

[apiInstance licenseListChildWith:customerId
              completionHandler: ^(array[License] output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.LicenseChildApi()
var customerId = 56; // {{Integer}} ID de customer relacionado con el usuario que realiza la petición.

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.licenseListChild(customerId, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class licenseListChildExample
    {
        public void main()
        {


            var apiInstance = new LicenseChildApi();
            var customerId = 56;  // Integer | ID de customer relacionado con el usuario que realiza la petición.

            try
            {
                array[License] result = apiInstance.licenseListChild(customerId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling LicenseChildApi.licenseListChild: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiLicenseChildApi();
$customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.

try {
    $result = $api_instance->licenseListChild($customerId);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling LicenseChildApi->licenseListChild: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::LicenseChildApi;


my $api_instance = WWW::SwaggerClient::LicenseChildApi->new();
my $customerId = 56; # Integer | ID de customer relacionado con el usuario que realiza la petición.

eval { 
    my $result = $api_instance->licenseListChild(customerId => $customerId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling LicenseChildApi->licenseListChild: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.LicenseChildApi()
customerId = 56 # Integer | ID de customer relacionado con el usuario que realiza la petición.

try: 
    api_response = api_instance.license_list_child(customerId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling LicenseChildApi->licenseListChild: %s\n" % e)

Parameters

Path parameters
Name Description
customerId*
Integer
ID de customer relacionado con el usuario que realiza la petición.
Required

Responses

Status: 200 - Respuesta de listado de modelos 'License'.

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


Player

displaysCatalog

Listado de catálogo de pantallas disponibles.


/player/displayscatalog

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/player/displayscatalog"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.PlayerApi;

import java.io.File;
import java.util.*;

public class PlayerApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        PlayerApi apiInstance = new PlayerApi();
        try {
            array[DisplaysCatalog] result = apiInstance.displaysCatalog();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling PlayerApi#displaysCatalog");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.PlayerApi;

public class PlayerApiExample {

    public static void main(String[] args) {
        PlayerApi apiInstance = new PlayerApi();
        try {
            array[DisplaysCatalog] result = apiInstance.displaysCatalog();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling PlayerApi#displaysCatalog");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];

PlayerApi *apiInstance = [[PlayerApi alloc] init];

[apiInstance displaysCatalogWithCompletionHandler: 
              ^(array[DisplaysCatalog] output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.PlayerApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.displaysCatalog(callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class displaysCatalogExample
    {
        public void main()
        {


            var apiInstance = new PlayerApi();

            try
            {
                array[DisplaysCatalog] result = apiInstance.displaysCatalog();
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling PlayerApi.displaysCatalog: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiPlayerApi();

try {
    $result = $api_instance->displaysCatalog();
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling PlayerApi->displaysCatalog: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::PlayerApi;


my $api_instance = WWW::SwaggerClient::PlayerApi->new();

eval { 
    my $result = $api_instance->displaysCatalog();
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling PlayerApi->displaysCatalog: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.PlayerApi()

try: 
    api_response = api_instance.displays_catalog()
    pprint(api_response)
except ApiException as e:
    print("Exception when calling PlayerApi->displaysCatalog: %s\n" % e)

Parameters

Responses

Status: 200 - Respuesta de catálogo de pantallas disponibles.

Status: 401 - El token no es válido


firmwaresList

Listado de firmwares disponibles.


/player/firmwares

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/player/firmwares"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.PlayerApi;

import java.io.File;
import java.util.*;

public class PlayerApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        PlayerApi apiInstance = new PlayerApi();
        try {
            array[PlayerApk] result = apiInstance.firmwaresList();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling PlayerApi#firmwaresList");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.PlayerApi;

public class PlayerApiExample {

    public static void main(String[] args) {
        PlayerApi apiInstance = new PlayerApi();
        try {
            array[PlayerApk] result = apiInstance.firmwaresList();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling PlayerApi#firmwaresList");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];

PlayerApi *apiInstance = [[PlayerApi alloc] init];

[apiInstance firmwaresListWithCompletionHandler: 
              ^(array[PlayerApk] output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.PlayerApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.firmwaresList(callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class firmwaresListExample
    {
        public void main()
        {


            var apiInstance = new PlayerApi();

            try
            {
                array[PlayerApk] result = apiInstance.firmwaresList();
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling PlayerApi.firmwaresList: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiPlayerApi();

try {
    $result = $api_instance->firmwaresList();
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling PlayerApi->firmwaresList: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::PlayerApi;


my $api_instance = WWW::SwaggerClient::PlayerApi->new();

eval { 
    my $result = $api_instance->firmwaresList();
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling PlayerApi->firmwaresList: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.PlayerApi()

try: 
    api_response = api_instance.firmwares_list()
    pprint(api_response)
except ApiException as e:
    print("Exception when calling PlayerApi->firmwaresList: %s\n" % e)

Parameters

Responses

Status: 200 - Respuesta de listado de firmwares disponibles.

Status: 401 - El token no es válido


modelsList

Listado de modelos 'PlayerModel'.


/player/models

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/player/models"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.PlayerApi;

import java.io.File;
import java.util.*;

public class PlayerApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        PlayerApi apiInstance = new PlayerApi();
        try {
            array[PlayerModel] result = apiInstance.modelsList();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling PlayerApi#modelsList");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.PlayerApi;

public class PlayerApiExample {

    public static void main(String[] args) {
        PlayerApi apiInstance = new PlayerApi();
        try {
            array[PlayerModel] result = apiInstance.modelsList();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling PlayerApi#modelsList");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];

PlayerApi *apiInstance = [[PlayerApi alloc] init];

[apiInstance modelsListWithCompletionHandler: 
              ^(array[PlayerModel] output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.PlayerApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.modelsList(callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class modelsListExample
    {
        public void main()
        {


            var apiInstance = new PlayerApi();

            try
            {
                array[PlayerModel] result = apiInstance.modelsList();
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling PlayerApi.modelsList: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiPlayerApi();

try {
    $result = $api_instance->modelsList();
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling PlayerApi->modelsList: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::PlayerApi;


my $api_instance = WWW::SwaggerClient::PlayerApi->new();

eval { 
    my $result = $api_instance->modelsList();
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling PlayerApi->modelsList: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.PlayerApi()

try: 
    api_response = api_instance.models_list()
    pprint(api_response)
except ApiException as e:
    print("Exception when calling PlayerApi->modelsList: %s\n" % e)

Parameters

Responses

Status: 200 - Respuesta de listado de modelos 'PlayerModel'.

Status: 401 - El token no es válido


playerConnectivity

Conectividad de player que corresponde a parametro 'inPath' {playerId}.


/player/connectivity/{playerId}

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/player/connectivity/{playerId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.PlayerApi;

import java.io.File;
import java.util.*;

public class PlayerApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        PlayerApi apiInstance = new PlayerApi();
         playerId = ; //  | ID de modelo 'Player' relacionado con el usuario que realiza la petición.
        try {
            apiInstance.playerConnectivity(playerId);
        } catch (ApiException e) {
            System.err.println("Exception when calling PlayerApi#playerConnectivity");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.PlayerApi;

public class PlayerApiExample {

    public static void main(String[] args) {
        PlayerApi apiInstance = new PlayerApi();
         playerId = ; //  | ID de modelo 'Player' relacionado con el usuario que realiza la petición.
        try {
            apiInstance.playerConnectivity(playerId);
        } catch (ApiException e) {
            System.err.println("Exception when calling PlayerApi#playerConnectivity");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
 *playerId = ; // ID de modelo 'Player' relacionado con el usuario que realiza la petición.

PlayerApi *apiInstance = [[PlayerApi alloc] init];

[apiInstance playerConnectivityWith:playerId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.PlayerApi()
var playerId = ; // {{}} ID de modelo 'Player' relacionado con el usuario que realiza la petición.

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.playerConnectivity(playerId, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class playerConnectivityExample
    {
        public void main()
        {


            var apiInstance = new PlayerApi();
            var playerId = new (); //  | ID de modelo 'Player' relacionado con el usuario que realiza la petición.

            try
            {
                apiInstance.playerConnectivity(playerId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling PlayerApi.playerConnectivity: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiPlayerApi();
$playerId = ; //  | ID de modelo 'Player' relacionado con el usuario que realiza la petición.

try {
    $api_instance->playerConnectivity($playerId);
} catch (Exception $e) {
    echo 'Exception when calling PlayerApi->playerConnectivity: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::PlayerApi;


my $api_instance = WWW::SwaggerClient::PlayerApi->new();
my $playerId = ; #  | ID de modelo 'Player' relacionado con el usuario que realiza la petición.

eval { 
    $api_instance->playerConnectivity(playerId => $playerId);
};
if ($@) {
    warn "Exception when calling PlayerApi->playerConnectivity: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.PlayerApi()
playerId =  #  | ID de modelo 'Player' relacionado con el usuario que realiza la petición.

try: 
    api_instance.player_connectivity(playerId)
except ApiException as e:
    print("Exception when calling PlayerApi->playerConnectivity: %s\n" % e)

Parameters

Path parameters
Name Description
playerId*
ID de modelo 'Player' relacionado con el usuario que realiza la petición.
Required

Responses

Status: 200 - Respuesta de franjas de conexion de player.

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


playerCreate

Crear un nuevo modelo 'Player' relacionado con el usuario que realiza la petición.


/player

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
-H "Content-Type: application/json"\
"https://{env}.nsign.tv/player"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.PlayerApi;

import java.io.File;
import java.util.*;

public class PlayerApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        PlayerApi apiInstance = new PlayerApi();
        PlayerPost body = ; // PlayerPost | 
        try {
            PlayerGet result = apiInstance.playerCreate(body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling PlayerApi#playerCreate");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.PlayerApi;

public class PlayerApiExample {

    public static void main(String[] args) {
        PlayerApi apiInstance = new PlayerApi();
        PlayerPost body = ; // PlayerPost | 
        try {
            PlayerGet result = apiInstance.playerCreate(body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling PlayerApi#playerCreate");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
PlayerPost *body = ; //  (optional)

PlayerApi *apiInstance = [[PlayerApi alloc] init];

[apiInstance playerCreateWith:body
              completionHandler: ^(PlayerGet output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.PlayerApi()
var opts = { 
  'body':  // {{PlayerPost}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.playerCreate(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class playerCreateExample
    {
        public void main()
        {


            var apiInstance = new PlayerApi();
            var body = new PlayerPost(); // PlayerPost |  (optional) 

            try
            {
                PlayerGet result = apiInstance.playerCreate(body);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling PlayerApi.playerCreate: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiPlayerApi();
$body = ; // PlayerPost | 

try {
    $result = $api_instance->playerCreate($body);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling PlayerApi->playerCreate: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::PlayerApi;


my $api_instance = WWW::SwaggerClient::PlayerApi->new();
my $body = WWW::SwaggerClient::Object::PlayerPost->new(); # PlayerPost | 

eval { 
    my $result = $api_instance->playerCreate(body => $body);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling PlayerApi->playerCreate: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.PlayerApi()
body =  # PlayerPost |  (optional)

try: 
    api_response = api_instance.player_create(body=body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling PlayerApi->playerCreate: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - Respuesta de modelo 'PlayerGet'.

Status: 400 - Los parametros incompatibles

Status: 401 - El token no es válido

Status: 404 - El modelo no encontrado


playerDelete

Eliminar el modelo 'Player' que corresponde a parametro 'inPath' {playerId}.


/player/{playerId}

Usage and SDK Samples

curl -X DELETE\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/player/{playerId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.PlayerApi;

import java.io.File;
import java.util.*;

public class PlayerApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        PlayerApi apiInstance = new PlayerApi();
        Integer playerId = 56; // Integer | ID de modelo 'Player' relacionado con el usuario que realiza la petición.
        try {
            apiInstance.playerDelete(playerId);
        } catch (ApiException e) {
            System.err.println("Exception when calling PlayerApi#playerDelete");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.PlayerApi;

public class PlayerApiExample {

    public static void main(String[] args) {
        PlayerApi apiInstance = new PlayerApi();
        Integer playerId = 56; // Integer | ID de modelo 'Player' relacionado con el usuario que realiza la petición.
        try {
            apiInstance.playerDelete(playerId);
        } catch (ApiException e) {
            System.err.println("Exception when calling PlayerApi#playerDelete");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *playerId = 56; // ID de modelo 'Player' relacionado con el usuario que realiza la petición.

PlayerApi *apiInstance = [[PlayerApi alloc] init];

[apiInstance playerDeleteWith:playerId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.PlayerApi()
var playerId = 56; // {{Integer}} ID de modelo 'Player' relacionado con el usuario que realiza la petición.

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.playerDelete(playerId, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class playerDeleteExample
    {
        public void main()
        {


            var apiInstance = new PlayerApi();
            var playerId = 56;  // Integer | ID de modelo 'Player' relacionado con el usuario que realiza la petición.

            try
            {
                apiInstance.playerDelete(playerId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling PlayerApi.playerDelete: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiPlayerApi();
$playerId = 56; // Integer | ID de modelo 'Player' relacionado con el usuario que realiza la petición.

try {
    $api_instance->playerDelete($playerId);
} catch (Exception $e) {
    echo 'Exception when calling PlayerApi->playerDelete: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::PlayerApi;


my $api_instance = WWW::SwaggerClient::PlayerApi->new();
my $playerId = 56; # Integer | ID de modelo 'Player' relacionado con el usuario que realiza la petición.

eval { 
    $api_instance->playerDelete(playerId => $playerId);
};
if ($@) {
    warn "Exception when calling PlayerApi->playerDelete: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.PlayerApi()
playerId = 56 # Integer | ID de modelo 'Player' relacionado con el usuario que realiza la petición.

try: 
    api_instance.player_delete(playerId)
except ApiException as e:
    print("Exception when calling PlayerApi->playerDelete: %s\n" % e)

Parameters

Path parameters
Name Description
playerId*
Integer
ID de modelo 'Player' relacionado con el usuario que realiza la petición.
Required

Responses

Status: 200 - Confirmación de acción.

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


playerGet

Información completa de modelo 'Player' que corresponde a parametro 'inPath' {playerId}.


/player/{playerId}

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/player/{playerId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.PlayerApi;

import java.io.File;
import java.util.*;

public class PlayerApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        PlayerApi apiInstance = new PlayerApi();
         playerId = ; //  | ID de modelo 'Player' relacionado con el usuario que realiza la petición.
        try {
            PlayerGet result = apiInstance.playerGet(playerId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling PlayerApi#playerGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.PlayerApi;

public class PlayerApiExample {

    public static void main(String[] args) {
        PlayerApi apiInstance = new PlayerApi();
         playerId = ; //  | ID de modelo 'Player' relacionado con el usuario que realiza la petición.
        try {
            PlayerGet result = apiInstance.playerGet(playerId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling PlayerApi#playerGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
 *playerId = ; // ID de modelo 'Player' relacionado con el usuario que realiza la petición.

PlayerApi *apiInstance = [[PlayerApi alloc] init];

[apiInstance playerGetWith:playerId
              completionHandler: ^(PlayerGet output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.PlayerApi()
var playerId = ; // {{}} ID de modelo 'Player' relacionado con el usuario que realiza la petición.

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.playerGet(playerId, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class playerGetExample
    {
        public void main()
        {


            var apiInstance = new PlayerApi();
            var playerId = new (); //  | ID de modelo 'Player' relacionado con el usuario que realiza la petición.

            try
            {
                PlayerGet result = apiInstance.playerGet(playerId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling PlayerApi.playerGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiPlayerApi();
$playerId = ; //  | ID de modelo 'Player' relacionado con el usuario que realiza la petición.

try {
    $result = $api_instance->playerGet($playerId);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling PlayerApi->playerGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::PlayerApi;


my $api_instance = WWW::SwaggerClient::PlayerApi->new();
my $playerId = ; #  | ID de modelo 'Player' relacionado con el usuario que realiza la petición.

eval { 
    my $result = $api_instance->playerGet(playerId => $playerId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling PlayerApi->playerGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.PlayerApi()
playerId =  #  | ID de modelo 'Player' relacionado con el usuario que realiza la petición.

try: 
    api_response = api_instance.player_get(playerId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling PlayerApi->playerGet: %s\n" % e)

Parameters

Path parameters
Name Description
playerId*
ID de modelo 'Player' relacionado con el usuario que realiza la petición.
Required

Responses

Status: 200 - Respuesta de modelo 'PlayerGet'.

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


playerGet_1

Tags de player que corresponde a parametro 'inPath' {playerId}.


/player/tags/{playerId}

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/player/tags/{playerId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.PlayerApi;

import java.io.File;
import java.util.*;

public class PlayerApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        PlayerApi apiInstance = new PlayerApi();
         playerId = ; //  | ID de modelo 'Player' relacionado con el usuario que realiza la petición.
        try {
            apiInstance.playerGet_0(playerId);
        } catch (ApiException e) {
            System.err.println("Exception when calling PlayerApi#playerGet_0");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.PlayerApi;

public class PlayerApiExample {

    public static void main(String[] args) {
        PlayerApi apiInstance = new PlayerApi();
         playerId = ; //  | ID de modelo 'Player' relacionado con el usuario que realiza la petición.
        try {
            apiInstance.playerGet_0(playerId);
        } catch (ApiException e) {
            System.err.println("Exception when calling PlayerApi#playerGet_0");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
 *playerId = ; // ID de modelo 'Player' relacionado con el usuario que realiza la petición.

PlayerApi *apiInstance = [[PlayerApi alloc] init];

[apiInstance playerGet_1With:playerId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.PlayerApi()
var playerId = ; // {{}} ID de modelo 'Player' relacionado con el usuario que realiza la petición.

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.playerGet_0(playerId, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class playerGet_0Example
    {
        public void main()
        {


            var apiInstance = new PlayerApi();
            var playerId = new (); //  | ID de modelo 'Player' relacionado con el usuario que realiza la petición.

            try
            {
                apiInstance.playerGet_0(playerId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling PlayerApi.playerGet_0: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiPlayerApi();
$playerId = ; //  | ID de modelo 'Player' relacionado con el usuario que realiza la petición.

try {
    $api_instance->playerGet_0($playerId);
} catch (Exception $e) {
    echo 'Exception when calling PlayerApi->playerGet_0: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::PlayerApi;


my $api_instance = WWW::SwaggerClient::PlayerApi->new();
my $playerId = ; #  | ID de modelo 'Player' relacionado con el usuario que realiza la petición.

eval { 
    $api_instance->playerGet_0(playerId => $playerId);
};
if ($@) {
    warn "Exception when calling PlayerApi->playerGet_0: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.PlayerApi()
playerId =  #  | ID de modelo 'Player' relacionado con el usuario que realiza la petición.

try: 
    api_instance.player_get_0(playerId)
except ApiException as e:
    print("Exception when calling PlayerApi->playerGet_0: %s\n" % e)

Parameters

Path parameters
Name Description
playerId*
ID de modelo 'Player' relacionado con el usuario que realiza la petición.
Required

Responses

Status: 200 - Respuesta de tags relacionados con player.

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


playerGet_2

Información completa de modelo 'Player' que corresponde a parametro 'inPath' {playerId}. Acceso con apiKey


/stateless/player/{playerId}

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/stateless/player/{playerId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.PlayerApi;

import java.io.File;
import java.util.*;

public class PlayerApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        PlayerApi apiInstance = new PlayerApi();
         playerId = ; //  | ID de modelo 'Player' relacionado con el usuario que realiza la petición.
        try {
            PlayerGet result = apiInstance.playerGet_1(playerId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling PlayerApi#playerGet_1");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.PlayerApi;

public class PlayerApiExample {

    public static void main(String[] args) {
        PlayerApi apiInstance = new PlayerApi();
         playerId = ; //  | ID de modelo 'Player' relacionado con el usuario que realiza la petición.
        try {
            PlayerGet result = apiInstance.playerGet_1(playerId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling PlayerApi#playerGet_1");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
 *playerId = ; // ID de modelo 'Player' relacionado con el usuario que realiza la petición.

PlayerApi *apiInstance = [[PlayerApi alloc] init];

[apiInstance playerGet_2With:playerId
              completionHandler: ^(PlayerGet output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.PlayerApi()
var playerId = ; // {{}} ID de modelo 'Player' relacionado con el usuario que realiza la petición.

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.playerGet_1(playerId, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class playerGet_1Example
    {
        public void main()
        {


            var apiInstance = new PlayerApi();
            var playerId = new (); //  | ID de modelo 'Player' relacionado con el usuario que realiza la petición.

            try
            {
                PlayerGet result = apiInstance.playerGet_1(playerId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling PlayerApi.playerGet_1: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiPlayerApi();
$playerId = ; //  | ID de modelo 'Player' relacionado con el usuario que realiza la petición.

try {
    $result = $api_instance->playerGet_1($playerId);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling PlayerApi->playerGet_1: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::PlayerApi;


my $api_instance = WWW::SwaggerClient::PlayerApi->new();
my $playerId = ; #  | ID de modelo 'Player' relacionado con el usuario que realiza la petición.

eval { 
    my $result = $api_instance->playerGet_1(playerId => $playerId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling PlayerApi->playerGet_1: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.PlayerApi()
playerId =  #  | ID de modelo 'Player' relacionado con el usuario que realiza la petición.

try: 
    api_response = api_instance.player_get_1(playerId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling PlayerApi->playerGet_1: %s\n" % e)

Parameters

Path parameters
Name Description
playerId*
ID de modelo 'Player' relacionado con el usuario que realiza la petición.
Required

Responses

Status: 200 - Respuesta de modelo 'PlayerGet'.

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


playerGet_3

Tags de player que corresponde a parametro 'inPath' {playerId}.


/stateless/player/tags/{playerId}

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/stateless/player/tags/{playerId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.PlayerApi;

import java.io.File;
import java.util.*;

public class PlayerApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        PlayerApi apiInstance = new PlayerApi();
         playerId = ; //  | ID de modelo 'Player' relacionado con el usuario que realiza la petición.
        try {
            apiInstance.playerGet_2(playerId);
        } catch (ApiException e) {
            System.err.println("Exception when calling PlayerApi#playerGet_2");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.PlayerApi;

public class PlayerApiExample {

    public static void main(String[] args) {
        PlayerApi apiInstance = new PlayerApi();
         playerId = ; //  | ID de modelo 'Player' relacionado con el usuario que realiza la petición.
        try {
            apiInstance.playerGet_2(playerId);
        } catch (ApiException e) {
            System.err.println("Exception when calling PlayerApi#playerGet_2");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
 *playerId = ; // ID de modelo 'Player' relacionado con el usuario que realiza la petición.

PlayerApi *apiInstance = [[PlayerApi alloc] init];

[apiInstance playerGet_3With:playerId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.PlayerApi()
var playerId = ; // {{}} ID de modelo 'Player' relacionado con el usuario que realiza la petición.

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.playerGet_2(playerId, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class playerGet_2Example
    {
        public void main()
        {


            var apiInstance = new PlayerApi();
            var playerId = new (); //  | ID de modelo 'Player' relacionado con el usuario que realiza la petición.

            try
            {
                apiInstance.playerGet_2(playerId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling PlayerApi.playerGet_2: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiPlayerApi();
$playerId = ; //  | ID de modelo 'Player' relacionado con el usuario que realiza la petición.

try {
    $api_instance->playerGet_2($playerId);
} catch (Exception $e) {
    echo 'Exception when calling PlayerApi->playerGet_2: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::PlayerApi;


my $api_instance = WWW::SwaggerClient::PlayerApi->new();
my $playerId = ; #  | ID de modelo 'Player' relacionado con el usuario que realiza la petición.

eval { 
    $api_instance->playerGet_2(playerId => $playerId);
};
if ($@) {
    warn "Exception when calling PlayerApi->playerGet_2: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.PlayerApi()
playerId =  #  | ID de modelo 'Player' relacionado con el usuario que realiza la petición.

try: 
    api_instance.player_get_2(playerId)
except ApiException as e:
    print("Exception when calling PlayerApi->playerGet_2: %s\n" % e)

Parameters

Path parameters
Name Description
playerId*
ID de modelo 'Player' relacionado con el usuario que realiza la petición.
Required

Responses

Status: 200 - Respuesta de tags relacionados con player.

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


playerInfo

Información completa de una lista de modelos 'Player' que corresponde al listado de parametros request.


/players/info

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
-H "Content-Type: application/json"\
"https://{env}.nsign.tv/players/info"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.PlayerApi;

import java.io.File;
import java.util.*;

public class PlayerApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        PlayerApi apiInstance = new PlayerApi();
        Players_info_body body = ; // Players_info_body | 
        try {
            PlayerInfo result = apiInstance.playerInfo(body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling PlayerApi#playerInfo");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.PlayerApi;

public class PlayerApiExample {

    public static void main(String[] args) {
        PlayerApi apiInstance = new PlayerApi();
        Players_info_body body = ; // Players_info_body | 
        try {
            PlayerInfo result = apiInstance.playerInfo(body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling PlayerApi#playerInfo");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Players_info_body *body = ; //  (optional)

PlayerApi *apiInstance = [[PlayerApi alloc] init];

[apiInstance playerInfoWith:body
              completionHandler: ^(PlayerInfo output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.PlayerApi()
var opts = { 
  'body':  // {{Players_info_body}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.playerInfo(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class playerInfoExample
    {
        public void main()
        {


            var apiInstance = new PlayerApi();
            var body = new Players_info_body(); // Players_info_body |  (optional) 

            try
            {
                PlayerInfo result = apiInstance.playerInfo(body);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling PlayerApi.playerInfo: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiPlayerApi();
$body = ; // Players_info_body | 

try {
    $result = $api_instance->playerInfo($body);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling PlayerApi->playerInfo: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::PlayerApi;


my $api_instance = WWW::SwaggerClient::PlayerApi->new();
my $body = WWW::SwaggerClient::Object::Players_info_body->new(); # Players_info_body | 

eval { 
    my $result = $api_instance->playerInfo(body => $body);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling PlayerApi->playerInfo: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.PlayerApi()
body =  # Players_info_body |  (optional)

try: 
    api_response = api_instance.player_info(body=body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling PlayerApi->playerInfo: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - Respuesta de modelo 'PlayerInfo'.

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


playerInfo_4

Información completa de una lista de modelos 'Player' que corresponde al listado de parametros request.


/stateless/players/info

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
-H "Content-Type: application/json"\
"https://{env}.nsign.tv/stateless/players/info"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.PlayerApi;

import java.io.File;
import java.util.*;

public class PlayerApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        PlayerApi apiInstance = new PlayerApi();
        Players_info_body_1 body = ; // Players_info_body_1 | 
        try {
            PlayerInfo result = apiInstance.playerInfo_0(body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling PlayerApi#playerInfo_0");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.PlayerApi;

public class PlayerApiExample {

    public static void main(String[] args) {
        PlayerApi apiInstance = new PlayerApi();
        Players_info_body_1 body = ; // Players_info_body_1 | 
        try {
            PlayerInfo result = apiInstance.playerInfo_0(body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling PlayerApi#playerInfo_0");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Players_info_body_1 *body = ; //  (optional)

PlayerApi *apiInstance = [[PlayerApi alloc] init];

[apiInstance playerInfo_4With:body
              completionHandler: ^(PlayerInfo output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.PlayerApi()
var opts = { 
  'body':  // {{Players_info_body_1}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.playerInfo_0(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class playerInfo_0Example
    {
        public void main()
        {


            var apiInstance = new PlayerApi();
            var body = new Players_info_body_1(); // Players_info_body_1 |  (optional) 

            try
            {
                PlayerInfo result = apiInstance.playerInfo_0(body);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling PlayerApi.playerInfo_0: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiPlayerApi();
$body = ; // Players_info_body_1 | 

try {
    $result = $api_instance->playerInfo_0($body);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling PlayerApi->playerInfo_0: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::PlayerApi;


my $api_instance = WWW::SwaggerClient::PlayerApi->new();
my $body = WWW::SwaggerClient::Object::Players_info_body_1->new(); # Players_info_body_1 | 

eval { 
    my $result = $api_instance->playerInfo_0(body => $body);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling PlayerApi->playerInfo_0: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.PlayerApi()
body =  # Players_info_body_1 |  (optional)

try: 
    api_response = api_instance.player_info_0(body=body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling PlayerApi->playerInfo_0: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - Respuesta de modelo 'PlayerInfo'.

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


playerList

Listado de modelos 'PlayerNormalizer' relacionados con el usuario que realiza la petición.


/players

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/players"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.PlayerApi;

import java.io.File;
import java.util.*;

public class PlayerApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        PlayerApi apiInstance = new PlayerApi();
        try {
            array[PlayerNormalizer] result = apiInstance.playerList();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling PlayerApi#playerList");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.PlayerApi;

public class PlayerApiExample {

    public static void main(String[] args) {
        PlayerApi apiInstance = new PlayerApi();
        try {
            array[PlayerNormalizer] result = apiInstance.playerList();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling PlayerApi#playerList");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];

PlayerApi *apiInstance = [[PlayerApi alloc] init];

[apiInstance playerListWithCompletionHandler: 
              ^(array[PlayerNormalizer] output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.PlayerApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.playerList(callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class playerListExample
    {
        public void main()
        {


            var apiInstance = new PlayerApi();

            try
            {
                array[PlayerNormalizer] result = apiInstance.playerList();
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling PlayerApi.playerList: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiPlayerApi();

try {
    $result = $api_instance->playerList();
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling PlayerApi->playerList: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::PlayerApi;


my $api_instance = WWW::SwaggerClient::PlayerApi->new();

eval { 
    my $result = $api_instance->playerList();
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling PlayerApi->playerList: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.PlayerApi()

try: 
    api_response = api_instance.player_list()
    pprint(api_response)
except ApiException as e:
    print("Exception when calling PlayerApi->playerList: %s\n" % e)

Parameters

Responses

Status: 200 - Respuesta de listado de modelos 'PlayerNormalizer'.

Status: 401 - El token no es válido


playerList_5

Listado de modelos 'PlayerNormalizer' relacionados con el usuario que realiza la petición. Acceso con apiKey


/stateless/players

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/stateless/players"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.PlayerApi;

import java.io.File;
import java.util.*;

public class PlayerApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        PlayerApi apiInstance = new PlayerApi();
        try {
            array[PlayerNormalizer] result = apiInstance.playerList_0();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling PlayerApi#playerList_0");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.PlayerApi;

public class PlayerApiExample {

    public static void main(String[] args) {
        PlayerApi apiInstance = new PlayerApi();
        try {
            array[PlayerNormalizer] result = apiInstance.playerList_0();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling PlayerApi#playerList_0");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];

PlayerApi *apiInstance = [[PlayerApi alloc] init];

[apiInstance playerList_5WithCompletionHandler: 
              ^(array[PlayerNormalizer] output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.PlayerApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.playerList_0(callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class playerList_0Example
    {
        public void main()
        {


            var apiInstance = new PlayerApi();

            try
            {
                array[PlayerNormalizer] result = apiInstance.playerList_0();
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling PlayerApi.playerList_0: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiPlayerApi();

try {
    $result = $api_instance->playerList_0();
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling PlayerApi->playerList_0: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::PlayerApi;


my $api_instance = WWW::SwaggerClient::PlayerApi->new();

eval { 
    my $result = $api_instance->playerList_0();
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling PlayerApi->playerList_0: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.PlayerApi()

try: 
    api_response = api_instance.player_list_0()
    pprint(api_response)
except ApiException as e:
    print("Exception when calling PlayerApi->playerList_0: %s\n" % e)

Parameters

Responses

Status: 200 - Respuesta de listado de modelos 'PlayerNormalizer'.

Status: 401 - El token no es válido


playerResolutions

Listado de resoluciones disponibles.


/player/resolutions

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/player/resolutions"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.PlayerApi;

import java.io.File;
import java.util.*;

public class PlayerApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        PlayerApi apiInstance = new PlayerApi();
        try {
            apiInstance.playerResolutions();
        } catch (ApiException e) {
            System.err.println("Exception when calling PlayerApi#playerResolutions");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.PlayerApi;

public class PlayerApiExample {

    public static void main(String[] args) {
        PlayerApi apiInstance = new PlayerApi();
        try {
            apiInstance.playerResolutions();
        } catch (ApiException e) {
            System.err.println("Exception when calling PlayerApi#playerResolutions");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];

PlayerApi *apiInstance = [[PlayerApi alloc] init];

[apiInstance playerResolutionsWithCompletionHandler: 
              ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.PlayerApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.playerResolutions(callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class playerResolutionsExample
    {
        public void main()
        {


            var apiInstance = new PlayerApi();

            try
            {
                apiInstance.playerResolutions();
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling PlayerApi.playerResolutions: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiPlayerApi();

try {
    $api_instance->playerResolutions();
} catch (Exception $e) {
    echo 'Exception when calling PlayerApi->playerResolutions: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::PlayerApi;


my $api_instance = WWW::SwaggerClient::PlayerApi->new();

eval { 
    $api_instance->playerResolutions();
};
if ($@) {
    warn "Exception when calling PlayerApi->playerResolutions: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.PlayerApi()

try: 
    api_instance.player_resolutions()
except ApiException as e:
    print("Exception when calling PlayerApi->playerResolutions: %s\n" % e)

Parameters

Responses

Status: 200 - Respuesta de listado de resoluciones.

Status: 401 - El token no es válido


playerStatusGet

Status de player 'inPath' {playerId}.


/player/status/{playerId}

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/player/status/{playerId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.PlayerApi;

import java.io.File;
import java.util.*;

public class PlayerApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        PlayerApi apiInstance = new PlayerApi();
         playerId = ; //  | ID de modelo 'Player' relacionado con el usuario que realiza la petición.
        try {
            PlayerStatus result = apiInstance.playerStatusGet(playerId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling PlayerApi#playerStatusGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.PlayerApi;

public class PlayerApiExample {

    public static void main(String[] args) {
        PlayerApi apiInstance = new PlayerApi();
         playerId = ; //  | ID de modelo 'Player' relacionado con el usuario que realiza la petición.
        try {
            PlayerStatus result = apiInstance.playerStatusGet(playerId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling PlayerApi#playerStatusGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
 *playerId = ; // ID de modelo 'Player' relacionado con el usuario que realiza la petición.

PlayerApi *apiInstance = [[PlayerApi alloc] init];

[apiInstance playerStatusGetWith:playerId
              completionHandler: ^(PlayerStatus output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.PlayerApi()
var playerId = ; // {{}} ID de modelo 'Player' relacionado con el usuario que realiza la petición.

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.playerStatusGet(playerId, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class playerStatusGetExample
    {
        public void main()
        {


            var apiInstance = new PlayerApi();
            var playerId = new (); //  | ID de modelo 'Player' relacionado con el usuario que realiza la petición.

            try
            {
                PlayerStatus result = apiInstance.playerStatusGet(playerId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling PlayerApi.playerStatusGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiPlayerApi();
$playerId = ; //  | ID de modelo 'Player' relacionado con el usuario que realiza la petición.

try {
    $result = $api_instance->playerStatusGet($playerId);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling PlayerApi->playerStatusGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::PlayerApi;


my $api_instance = WWW::SwaggerClient::PlayerApi->new();
my $playerId = ; #  | ID de modelo 'Player' relacionado con el usuario que realiza la petición.

eval { 
    my $result = $api_instance->playerStatusGet(playerId => $playerId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling PlayerApi->playerStatusGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.PlayerApi()
playerId =  #  | ID de modelo 'Player' relacionado con el usuario que realiza la petición.

try: 
    api_response = api_instance.player_status_get(playerId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling PlayerApi->playerStatusGet: %s\n" % e)

Parameters

Path parameters
Name Description
playerId*
ID de modelo 'Player' relacionado con el usuario que realiza la petición.
Required

Responses

Status: 200 - Estado del player.

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


playerStatusSpaceGet

Status Space de player 'inPath' {playerId}.


/player/status_space/{playerId}

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/player/status_space/{playerId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.PlayerApi;

import java.io.File;
import java.util.*;

public class PlayerApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        PlayerApi apiInstance = new PlayerApi();
         playerId = ; //  | ID de modelo 'Player' relacionado con el usuario que realiza la petición.
        try {
            PlayerStatusSpace result = apiInstance.playerStatusSpaceGet(playerId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling PlayerApi#playerStatusSpaceGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.PlayerApi;

public class PlayerApiExample {

    public static void main(String[] args) {
        PlayerApi apiInstance = new PlayerApi();
         playerId = ; //  | ID de modelo 'Player' relacionado con el usuario que realiza la petición.
        try {
            PlayerStatusSpace result = apiInstance.playerStatusSpaceGet(playerId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling PlayerApi#playerStatusSpaceGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
 *playerId = ; // ID de modelo 'Player' relacionado con el usuario que realiza la petición.

PlayerApi *apiInstance = [[PlayerApi alloc] init];

[apiInstance playerStatusSpaceGetWith:playerId
              completionHandler: ^(PlayerStatusSpace output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.PlayerApi()
var playerId = ; // {{}} ID de modelo 'Player' relacionado con el usuario que realiza la petición.

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.playerStatusSpaceGet(playerId, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class playerStatusSpaceGetExample
    {
        public void main()
        {


            var apiInstance = new PlayerApi();
            var playerId = new (); //  | ID de modelo 'Player' relacionado con el usuario que realiza la petición.

            try
            {
                PlayerStatusSpace result = apiInstance.playerStatusSpaceGet(playerId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling PlayerApi.playerStatusSpaceGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiPlayerApi();
$playerId = ; //  | ID de modelo 'Player' relacionado con el usuario que realiza la petición.

try {
    $result = $api_instance->playerStatusSpaceGet($playerId);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling PlayerApi->playerStatusSpaceGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::PlayerApi;


my $api_instance = WWW::SwaggerClient::PlayerApi->new();
my $playerId = ; #  | ID de modelo 'Player' relacionado con el usuario que realiza la petición.

eval { 
    my $result = $api_instance->playerStatusSpaceGet(playerId => $playerId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling PlayerApi->playerStatusSpaceGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.PlayerApi()
playerId =  #  | ID de modelo 'Player' relacionado con el usuario que realiza la petición.

try: 
    api_response = api_instance.player_status_space_get(playerId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling PlayerApi->playerStatusSpaceGet: %s\n" % e)

Parameters

Path parameters
Name Description
playerId*
ID de modelo 'Player' relacionado con el usuario que realiza la petición.
Required

Responses

Status: 200 - Estado del player.

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


playerUpdate

Editar el modelo 'Player' que corresponde a parametro 'inPath' {playerId}.


/player/{playerId}

Usage and SDK Samples

curl -X PUT\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
-H "Content-Type: application/json"\
"https://{env}.nsign.tv/player/{playerId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.PlayerApi;

import java.io.File;
import java.util.*;

public class PlayerApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        PlayerApi apiInstance = new PlayerApi();
         playerId = ; //  | ID de modelo 'Player' relacionado con el usuario que realiza la petición.
        PlayerPost body = ; // PlayerPost | 
        try {
            PlayerGet result = apiInstance.playerUpdate(playerId, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling PlayerApi#playerUpdate");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.PlayerApi;

public class PlayerApiExample {

    public static void main(String[] args) {
        PlayerApi apiInstance = new PlayerApi();
         playerId = ; //  | ID de modelo 'Player' relacionado con el usuario que realiza la petición.
        PlayerPost body = ; // PlayerPost | 
        try {
            PlayerGet result = apiInstance.playerUpdate(playerId, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling PlayerApi#playerUpdate");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
 *playerId = ; // ID de modelo 'Player' relacionado con el usuario que realiza la petición.
PlayerPost *body = ; //  (optional)

PlayerApi *apiInstance = [[PlayerApi alloc] init];

[apiInstance playerUpdateWith:playerId
    body:body
              completionHandler: ^(PlayerGet output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.PlayerApi()
var playerId = ; // {{}} ID de modelo 'Player' relacionado con el usuario que realiza la petición.
var opts = { 
  'body':  // {{PlayerPost}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.playerUpdate(playerId, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class playerUpdateExample
    {
        public void main()
        {


            var apiInstance = new PlayerApi();
            var playerId = new (); //  | ID de modelo 'Player' relacionado con el usuario que realiza la petición.
            var body = new PlayerPost(); // PlayerPost |  (optional) 

            try
            {
                PlayerGet result = apiInstance.playerUpdate(playerId, body);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling PlayerApi.playerUpdate: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiPlayerApi();
$playerId = ; //  | ID de modelo 'Player' relacionado con el usuario que realiza la petición.
$body = ; // PlayerPost | 

try {
    $result = $api_instance->playerUpdate($playerId, $body);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling PlayerApi->playerUpdate: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::PlayerApi;


my $api_instance = WWW::SwaggerClient::PlayerApi->new();
my $playerId = ; #  | ID de modelo 'Player' relacionado con el usuario que realiza la petición.
my $body = WWW::SwaggerClient::Object::PlayerPost->new(); # PlayerPost | 

eval { 
    my $result = $api_instance->playerUpdate(playerId => $playerId, body => $body);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling PlayerApi->playerUpdate: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.PlayerApi()
playerId =  #  | ID de modelo 'Player' relacionado con el usuario que realiza la petición.
body =  # PlayerPost |  (optional)

try: 
    api_response = api_instance.player_update(playerId, body=body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling PlayerApi->playerUpdate: %s\n" % e)

Parameters

Path parameters
Name Description
playerId*
ID de modelo 'Player' relacionado con el usuario que realiza la petición.
Required
Body parameters
Name Description
body

Responses

Status: 200 - Respuesta de modelo 'PlayerGet'.

Status: 400 - Los parametros incompatibles

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


playerUpdateApiKey

Editar el modelo 'Player' que corresponde a parametro 'inPath' {playerId}.


/stateless/player/{playerId}

Usage and SDK Samples

curl -X PUT\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
-H "Content-Type: application/json"\
"https://{env}.nsign.tv/stateless/player/{playerId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.PlayerApi;

import java.io.File;
import java.util.*;

public class PlayerApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        PlayerApi apiInstance = new PlayerApi();
         playerId = ; //  | ID de modelo 'Player' relacionado con el usuario que realiza la petición.
        PlayerPost body = ; // PlayerPost | 
        try {
            PlayerGet result = apiInstance.playerUpdateApiKey(playerId, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling PlayerApi#playerUpdateApiKey");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.PlayerApi;

public class PlayerApiExample {

    public static void main(String[] args) {
        PlayerApi apiInstance = new PlayerApi();
         playerId = ; //  | ID de modelo 'Player' relacionado con el usuario que realiza la petición.
        PlayerPost body = ; // PlayerPost | 
        try {
            PlayerGet result = apiInstance.playerUpdateApiKey(playerId, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling PlayerApi#playerUpdateApiKey");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
 *playerId = ; // ID de modelo 'Player' relacionado con el usuario que realiza la petición.
PlayerPost *body = ; //  (optional)

PlayerApi *apiInstance = [[PlayerApi alloc] init];

[apiInstance playerUpdateApiKeyWith:playerId
    body:body
              completionHandler: ^(PlayerGet output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.PlayerApi()
var playerId = ; // {{}} ID de modelo 'Player' relacionado con el usuario que realiza la petición.
var opts = { 
  'body':  // {{PlayerPost}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.playerUpdateApiKey(playerId, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class playerUpdateApiKeyExample
    {
        public void main()
        {


            var apiInstance = new PlayerApi();
            var playerId = new (); //  | ID de modelo 'Player' relacionado con el usuario que realiza la petición.
            var body = new PlayerPost(); // PlayerPost |  (optional) 

            try
            {
                PlayerGet result = apiInstance.playerUpdateApiKey(playerId, body);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling PlayerApi.playerUpdateApiKey: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiPlayerApi();
$playerId = ; //  | ID de modelo 'Player' relacionado con el usuario que realiza la petición.
$body = ; // PlayerPost | 

try {
    $result = $api_instance->playerUpdateApiKey($playerId, $body);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling PlayerApi->playerUpdateApiKey: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::PlayerApi;


my $api_instance = WWW::SwaggerClient::PlayerApi->new();
my $playerId = ; #  | ID de modelo 'Player' relacionado con el usuario que realiza la petición.
my $body = WWW::SwaggerClient::Object::PlayerPost->new(); # PlayerPost | 

eval { 
    my $result = $api_instance->playerUpdateApiKey(playerId => $playerId, body => $body);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling PlayerApi->playerUpdateApiKey: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.PlayerApi()
playerId =  #  | ID de modelo 'Player' relacionado con el usuario que realiza la petición.
body =  # PlayerPost |  (optional)

try: 
    api_response = api_instance.player_update_api_key(playerId, body=body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling PlayerApi->playerUpdateApiKey: %s\n" % e)

Parameters

Path parameters
Name Description
playerId*
ID de modelo 'Player' relacionado con el usuario que realiza la petición.
Required
Body parameters
Name Description
body

Responses

Status: 200 - Respuesta de modelo 'PlayerGet'.

Status: 400 - Los parametros incompatibles

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


timezoneList

Listado de modelos 'TimeZone' relacionados con el usuario que realiza la petición.


/player/timezones

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/player/timezones"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.PlayerApi;

import java.io.File;
import java.util.*;

public class PlayerApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        PlayerApi apiInstance = new PlayerApi();
        try {
            array[TimeZone] result = apiInstance.timezoneList();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling PlayerApi#timezoneList");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.PlayerApi;

public class PlayerApiExample {

    public static void main(String[] args) {
        PlayerApi apiInstance = new PlayerApi();
        try {
            array[TimeZone] result = apiInstance.timezoneList();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling PlayerApi#timezoneList");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];

PlayerApi *apiInstance = [[PlayerApi alloc] init];

[apiInstance timezoneListWithCompletionHandler: 
              ^(array[TimeZone] output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.PlayerApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.timezoneList(callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class timezoneListExample
    {
        public void main()
        {


            var apiInstance = new PlayerApi();

            try
            {
                array[TimeZone] result = apiInstance.timezoneList();
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling PlayerApi.timezoneList: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiPlayerApi();

try {
    $result = $api_instance->timezoneList();
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling PlayerApi->timezoneList: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::PlayerApi;


my $api_instance = WWW::SwaggerClient::PlayerApi->new();

eval { 
    my $result = $api_instance->timezoneList();
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling PlayerApi->timezoneList: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.PlayerApi()

try: 
    api_response = api_instance.timezone_list()
    pprint(api_response)
except ApiException as e:
    print("Exception when calling PlayerApi->timezoneList: %s\n" % e)

Parameters

Responses

Status: 200 - Respuesta de listado de modelos 'TimeZone'.

Status: 401 - El token no es válido


PlayerAction

playerRequestAction

Procesar acción en player que corresponde a parametro 'inPath' {playerId}.


/player/{playerId}/actions/{actionName}

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/player/{playerId}/actions/{actionName}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.PlayerActionApi;

import java.io.File;
import java.util.*;

public class PlayerActionApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        PlayerActionApi apiInstance = new PlayerActionApi();
        Integer playerId = 56; // Integer | ID de modelo 'Player' relacionado con el customer que corresponde a parametro 'inPath'.
        try {
            apiInstance.playerRequestAction(playerId);
        } catch (ApiException e) {
            System.err.println("Exception when calling PlayerActionApi#playerRequestAction");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.PlayerActionApi;

public class PlayerActionApiExample {

    public static void main(String[] args) {
        PlayerActionApi apiInstance = new PlayerActionApi();
        Integer playerId = 56; // Integer | ID de modelo 'Player' relacionado con el customer que corresponde a parametro 'inPath'.
        try {
            apiInstance.playerRequestAction(playerId);
        } catch (ApiException e) {
            System.err.println("Exception when calling PlayerActionApi#playerRequestAction");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *playerId = 56; // ID de modelo 'Player' relacionado con el customer que corresponde a parametro 'inPath'.

PlayerActionApi *apiInstance = [[PlayerActionApi alloc] init];

[apiInstance playerRequestActionWith:playerId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.PlayerActionApi()
var playerId = 56; // {{Integer}} ID de modelo 'Player' relacionado con el customer que corresponde a parametro 'inPath'.

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.playerRequestAction(playerId, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class playerRequestActionExample
    {
        public void main()
        {


            var apiInstance = new PlayerActionApi();
            var playerId = 56;  // Integer | ID de modelo 'Player' relacionado con el customer que corresponde a parametro 'inPath'.

            try
            {
                apiInstance.playerRequestAction(playerId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling PlayerActionApi.playerRequestAction: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiPlayerActionApi();
$playerId = 56; // Integer | ID de modelo 'Player' relacionado con el customer que corresponde a parametro 'inPath'.

try {
    $api_instance->playerRequestAction($playerId);
} catch (Exception $e) {
    echo 'Exception when calling PlayerActionApi->playerRequestAction: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::PlayerActionApi;


my $api_instance = WWW::SwaggerClient::PlayerActionApi->new();
my $playerId = 56; # Integer | ID de modelo 'Player' relacionado con el customer que corresponde a parametro 'inPath'.

eval { 
    $api_instance->playerRequestAction(playerId => $playerId);
};
if ($@) {
    warn "Exception when calling PlayerActionApi->playerRequestAction: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.PlayerActionApi()
playerId = 56 # Integer | ID de modelo 'Player' relacionado con el customer que corresponde a parametro 'inPath'.

try: 
    api_instance.player_request_action(playerId)
except ApiException as e:
    print("Exception when calling PlayerActionApi->playerRequestAction: %s\n" % e)

Parameters

Path parameters
Name Description
playerId*
Integer
ID de modelo 'Player' relacionado con el customer que corresponde a parametro 'inPath'.
Required

Responses

Status: 200 - Confirmación de acción.

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


PlayerApk

deleteApkManagerApk

Eliminar Player Apk que corresponde a parametro 'inPath' {id}


/delete/apk/{id}

Usage and SDK Samples

curl -X DELETE\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/delete/apk/{id}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.PlayerApkApi;

import java.io.File;
import java.util.*;

public class PlayerApkApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        PlayerApkApi apiInstance = new PlayerApkApi();
        Integer id = 56; // Integer |  ID de Player Apk que realiza la petición.
        try {
            apiInstance.deleteApkManagerApk(id);
        } catch (ApiException e) {
            System.err.println("Exception when calling PlayerApkApi#deleteApkManagerApk");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.PlayerApkApi;

public class PlayerApkApiExample {

    public static void main(String[] args) {
        PlayerApkApi apiInstance = new PlayerApkApi();
        Integer id = 56; // Integer |  ID de Player Apk que realiza la petición.
        try {
            apiInstance.deleteApkManagerApk(id);
        } catch (ApiException e) {
            System.err.println("Exception when calling PlayerApkApi#deleteApkManagerApk");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *id = 56; //  ID de Player Apk que realiza la petición.

PlayerApkApi *apiInstance = [[PlayerApkApi alloc] init];

[apiInstance deleteApkManagerApkWith:id
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.PlayerApkApi()
var id = 56; // {{Integer}}  ID de Player Apk que realiza la petición.

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.deleteApkManagerApk(id, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class deleteApkManagerApkExample
    {
        public void main()
        {


            var apiInstance = new PlayerApkApi();
            var id = 56;  // Integer |  ID de Player Apk que realiza la petición.

            try
            {
                apiInstance.deleteApkManagerApk(id);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling PlayerApkApi.deleteApkManagerApk: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiPlayerApkApi();
$id = 56; // Integer |  ID de Player Apk que realiza la petición.

try {
    $api_instance->deleteApkManagerApk($id);
} catch (Exception $e) {
    echo 'Exception when calling PlayerApkApi->deleteApkManagerApk: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::PlayerApkApi;


my $api_instance = WWW::SwaggerClient::PlayerApkApi->new();
my $id = 56; # Integer |  ID de Player Apk que realiza la petición.

eval { 
    $api_instance->deleteApkManagerApk(id => $id);
};
if ($@) {
    warn "Exception when calling PlayerApkApi->deleteApkManagerApk: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.PlayerApkApi()
id = 56 # Integer |  ID de Player Apk que realiza la petición.

try: 
    api_instance.delete_apk_manager_apk(id)
except ApiException as e:
    print("Exception when calling PlayerApkApi->deleteApkManagerApk: %s\n" % e)

Parameters

Path parameters
Name Description
id*
Integer
ID de Player Apk que realiza la petición.
Required

Responses

Status: 200 - Confirmación de acción.

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


PlayerChild

playerCreateChild

Crear un nuevo modelo 'Player' para customer que corresponde a parametro 'inPath' {customerId}.


/player/customer/{customerId}

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
-H "Content-Type: application/json"\
"https://{env}.nsign.tv/player/customer/{customerId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.PlayerChildApi;

import java.io.File;
import java.util.*;

public class PlayerChildApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        PlayerChildApi apiInstance = new PlayerChildApi();
        Integer customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
        PlayerPost body = ; // PlayerPost | 
        try {
            PlayerGet result = apiInstance.playerCreateChild(customerId, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling PlayerChildApi#playerCreateChild");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.PlayerChildApi;

public class PlayerChildApiExample {

    public static void main(String[] args) {
        PlayerChildApi apiInstance = new PlayerChildApi();
        Integer customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
        PlayerPost body = ; // PlayerPost | 
        try {
            PlayerGet result = apiInstance.playerCreateChild(customerId, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling PlayerChildApi#playerCreateChild");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *customerId = 56; // ID de customer relacionado con el usuario que realiza la petición.
PlayerPost *body = ; //  (optional)

PlayerChildApi *apiInstance = [[PlayerChildApi alloc] init];

[apiInstance playerCreateChildWith:customerId
    body:body
              completionHandler: ^(PlayerGet output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.PlayerChildApi()
var customerId = 56; // {{Integer}} ID de customer relacionado con el usuario que realiza la petición.
var opts = { 
  'body':  // {{PlayerPost}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.playerCreateChild(customerId, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class playerCreateChildExample
    {
        public void main()
        {


            var apiInstance = new PlayerChildApi();
            var customerId = 56;  // Integer | ID de customer relacionado con el usuario que realiza la petición.
            var body = new PlayerPost(); // PlayerPost |  (optional) 

            try
            {
                PlayerGet result = apiInstance.playerCreateChild(customerId, body);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling PlayerChildApi.playerCreateChild: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiPlayerChildApi();
$customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
$body = ; // PlayerPost | 

try {
    $result = $api_instance->playerCreateChild($customerId, $body);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling PlayerChildApi->playerCreateChild: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::PlayerChildApi;


my $api_instance = WWW::SwaggerClient::PlayerChildApi->new();
my $customerId = 56; # Integer | ID de customer relacionado con el usuario que realiza la petición.
my $body = WWW::SwaggerClient::Object::PlayerPost->new(); # PlayerPost | 

eval { 
    my $result = $api_instance->playerCreateChild(customerId => $customerId, body => $body);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling PlayerChildApi->playerCreateChild: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.PlayerChildApi()
customerId = 56 # Integer | ID de customer relacionado con el usuario que realiza la petición.
body =  # PlayerPost |  (optional)

try: 
    api_response = api_instance.player_create_child(customerId, body=body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling PlayerChildApi->playerCreateChild: %s\n" % e)

Parameters

Path parameters
Name Description
customerId*
Integer
ID de customer relacionado con el usuario que realiza la petición.
Required
Body parameters
Name Description
body

Responses

Status: 200 - Respuesta de modelo 'PlayerGet'.

Status: 400 - Los parametros incompatibles

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


playerDeleteChild

Eliminar el modelo 'Player' relacionado con customer que corresponde a parametro 'inPath' {customerId}.


/player/customer/{customerId}/{playerId}

Usage and SDK Samples

curl -X DELETE\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/player/customer/{customerId}/{playerId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.PlayerChildApi;

import java.io.File;
import java.util.*;

public class PlayerChildApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        PlayerChildApi apiInstance = new PlayerChildApi();
        Integer playerId = 56; // Integer | ID de modelo 'Player' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
        Integer customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
        try {
            apiInstance.playerDeleteChild(playerId, customerId);
        } catch (ApiException e) {
            System.err.println("Exception when calling PlayerChildApi#playerDeleteChild");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.PlayerChildApi;

public class PlayerChildApiExample {

    public static void main(String[] args) {
        PlayerChildApi apiInstance = new PlayerChildApi();
        Integer playerId = 56; // Integer | ID de modelo 'Player' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
        Integer customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
        try {
            apiInstance.playerDeleteChild(playerId, customerId);
        } catch (ApiException e) {
            System.err.println("Exception when calling PlayerChildApi#playerDeleteChild");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *playerId = 56; // ID de modelo 'Player' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
Integer *customerId = 56; // ID de customer relacionado con el usuario que realiza la petición.

PlayerChildApi *apiInstance = [[PlayerChildApi alloc] init];

[apiInstance playerDeleteChildWith:playerId
    customerId:customerId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.PlayerChildApi()
var playerId = 56; // {{Integer}} ID de modelo 'Player' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
var customerId = 56; // {{Integer}} ID de customer relacionado con el usuario que realiza la petición.

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.playerDeleteChild(playerId, customerId, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class playerDeleteChildExample
    {
        public void main()
        {


            var apiInstance = new PlayerChildApi();
            var playerId = 56;  // Integer | ID de modelo 'Player' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
            var customerId = 56;  // Integer | ID de customer relacionado con el usuario que realiza la petición.

            try
            {
                apiInstance.playerDeleteChild(playerId, customerId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling PlayerChildApi.playerDeleteChild: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiPlayerChildApi();
$playerId = 56; // Integer | ID de modelo 'Player' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
$customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.

try {
    $api_instance->playerDeleteChild($playerId, $customerId);
} catch (Exception $e) {
    echo 'Exception when calling PlayerChildApi->playerDeleteChild: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::PlayerChildApi;


my $api_instance = WWW::SwaggerClient::PlayerChildApi->new();
my $playerId = 56; # Integer | ID de modelo 'Player' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
my $customerId = 56; # Integer | ID de customer relacionado con el usuario que realiza la petición.

eval { 
    $api_instance->playerDeleteChild(playerId => $playerId, customerId => $customerId);
};
if ($@) {
    warn "Exception when calling PlayerChildApi->playerDeleteChild: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.PlayerChildApi()
playerId = 56 # Integer | ID de modelo 'Player' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
customerId = 56 # Integer | ID de customer relacionado con el usuario que realiza la petición.

try: 
    api_instance.player_delete_child(playerId, customerId)
except ApiException as e:
    print("Exception when calling PlayerChildApi->playerDeleteChild: %s\n" % e)

Parameters

Path parameters
Name Description
playerId*
Integer
ID de modelo 'Player' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
Required
customerId*
Integer
ID de customer relacionado con el usuario que realiza la petición.
Required

Responses

Status: 200 - Confirmación de acción.

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


playerGetChild

Editar el modelo 'Player' relacionado con customer que corresponde a parametro 'inPath' {customerId}


/player/customer/{customerId}/{playerId}

Usage and SDK Samples

curl -X PUT\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
-H "Content-Type: application/json"\
"https://{env}.nsign.tv/player/customer/{customerId}/{playerId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.PlayerChildApi;

import java.io.File;
import java.util.*;

public class PlayerChildApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        PlayerChildApi apiInstance = new PlayerChildApi();
         customerId = ; //  | ID de customer relacionado con el usuario que realiza la petición.
        Integer playerId = 56; // Integer | ID de modelo 'Player' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
        PlayerPost body = ; // PlayerPost | 
        try {
            PlayerGet result = apiInstance.playerGetChild(customerId, playerId, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling PlayerChildApi#playerGetChild");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.PlayerChildApi;

public class PlayerChildApiExample {

    public static void main(String[] args) {
        PlayerChildApi apiInstance = new PlayerChildApi();
         customerId = ; //  | ID de customer relacionado con el usuario que realiza la petición.
        Integer playerId = 56; // Integer | ID de modelo 'Player' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
        PlayerPost body = ; // PlayerPost | 
        try {
            PlayerGet result = apiInstance.playerGetChild(customerId, playerId, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling PlayerChildApi#playerGetChild");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
 *customerId = ; // ID de customer relacionado con el usuario que realiza la petición.
Integer *playerId = 56; // ID de modelo 'Player' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
PlayerPost *body = ; //  (optional)

PlayerChildApi *apiInstance = [[PlayerChildApi alloc] init];

[apiInstance playerGetChildWith:customerId
    playerId:playerId
    body:body
              completionHandler: ^(PlayerGet output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.PlayerChildApi()
var customerId = ; // {{}} ID de customer relacionado con el usuario que realiza la petición.
var playerId = 56; // {{Integer}} ID de modelo 'Player' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
var opts = { 
  'body':  // {{PlayerPost}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.playerGetChild(customerIdplayerId, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class playerGetChildExample
    {
        public void main()
        {


            var apiInstance = new PlayerChildApi();
            var customerId = new (); //  | ID de customer relacionado con el usuario que realiza la petición.
            var playerId = 56;  // Integer | ID de modelo 'Player' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
            var body = new PlayerPost(); // PlayerPost |  (optional) 

            try
            {
                PlayerGet result = apiInstance.playerGetChild(customerId, playerId, body);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling PlayerChildApi.playerGetChild: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiPlayerChildApi();
$customerId = ; //  | ID de customer relacionado con el usuario que realiza la petición.
$playerId = 56; // Integer | ID de modelo 'Player' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
$body = ; // PlayerPost | 

try {
    $result = $api_instance->playerGetChild($customerId, $playerId, $body);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling PlayerChildApi->playerGetChild: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::PlayerChildApi;


my $api_instance = WWW::SwaggerClient::PlayerChildApi->new();
my $customerId = ; #  | ID de customer relacionado con el usuario que realiza la petición.
my $playerId = 56; # Integer | ID de modelo 'Player' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
my $body = WWW::SwaggerClient::Object::PlayerPost->new(); # PlayerPost | 

eval { 
    my $result = $api_instance->playerGetChild(customerId => $customerId, playerId => $playerId, body => $body);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling PlayerChildApi->playerGetChild: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.PlayerChildApi()
customerId =  #  | ID de customer relacionado con el usuario que realiza la petición.
playerId = 56 # Integer | ID de modelo 'Player' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
body =  # PlayerPost |  (optional)

try: 
    api_response = api_instance.player_get_child(customerId, playerId, body=body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling PlayerChildApi->playerGetChild: %s\n" % e)

Parameters

Path parameters
Name Description
customerId*
ID de customer relacionado con el usuario que realiza la petición.
Required
playerId*
Integer
ID de modelo 'Player' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
Required
Body parameters
Name Description
body

Responses

Status: 200 - Respuesta de modelo 'PlayerGet'

Status: 400 - Los parametros incompatibles

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


playerListChild

Listado de modelos 'PlayerNormalizer' relacionados con el customer que corresponde a parametro 'inPath' {customerId}


/players/customer/{customerId}

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
-H "Content-Type: application/json"\
"https://{env}.nsign.tv/players/customer/{customerId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.PlayerChildApi;

import java.io.File;
import java.util.*;

public class PlayerChildApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        PlayerChildApi apiInstance = new PlayerChildApi();
        Integer customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
        Customer_customerId_body body = ; // Customer_customerId_body | 
        try {
            array[PlayerNormalizer] result = apiInstance.playerListChild(customerId, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling PlayerChildApi#playerListChild");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.PlayerChildApi;

public class PlayerChildApiExample {

    public static void main(String[] args) {
        PlayerChildApi apiInstance = new PlayerChildApi();
        Integer customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
        Customer_customerId_body body = ; // Customer_customerId_body | 
        try {
            array[PlayerNormalizer] result = apiInstance.playerListChild(customerId, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling PlayerChildApi#playerListChild");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *customerId = 56; // ID de customer relacionado con el usuario que realiza la petición.
Customer_customerId_body *body = ; //  (optional)

PlayerChildApi *apiInstance = [[PlayerChildApi alloc] init];

[apiInstance playerListChildWith:customerId
    body:body
              completionHandler: ^(array[PlayerNormalizer] output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.PlayerChildApi()
var customerId = 56; // {{Integer}} ID de customer relacionado con el usuario que realiza la petición.
var opts = { 
  'body':  // {{Customer_customerId_body}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.playerListChild(customerId, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class playerListChildExample
    {
        public void main()
        {


            var apiInstance = new PlayerChildApi();
            var customerId = 56;  // Integer | ID de customer relacionado con el usuario que realiza la petición.
            var body = new Customer_customerId_body(); // Customer_customerId_body |  (optional) 

            try
            {
                array[PlayerNormalizer] result = apiInstance.playerListChild(customerId, body);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling PlayerChildApi.playerListChild: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiPlayerChildApi();
$customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
$body = ; // Customer_customerId_body | 

try {
    $result = $api_instance->playerListChild($customerId, $body);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling PlayerChildApi->playerListChild: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::PlayerChildApi;


my $api_instance = WWW::SwaggerClient::PlayerChildApi->new();
my $customerId = 56; # Integer | ID de customer relacionado con el usuario que realiza la petición.
my $body = WWW::SwaggerClient::Object::Customer_customerId_body->new(); # Customer_customerId_body | 

eval { 
    my $result = $api_instance->playerListChild(customerId => $customerId, body => $body);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling PlayerChildApi->playerListChild: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.PlayerChildApi()
customerId = 56 # Integer | ID de customer relacionado con el usuario que realiza la petición.
body =  # Customer_customerId_body |  (optional)

try: 
    api_response = api_instance.player_list_child(customerId, body=body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling PlayerChildApi->playerListChild: %s\n" % e)

Parameters

Path parameters
Name Description
customerId*
Integer
ID de customer relacionado con el usuario que realiza la petición.
Required
Body parameters
Name Description
body

Responses

Status: 200 - Respuesta de listado de modelos 'PlayerNormalizer'.

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


playerListChild_1

Listado de modelos 'PlayerNormalizer' relacionados con el customer que corresponde a parametro 'inPath' {customerId}. Acceso con apiKey


/stateless/players/customer/{customerId}

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
-H "Content-Type: application/json"\
"https://{env}.nsign.tv/stateless/players/customer/{customerId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.PlayerChildApi;

import java.io.File;
import java.util.*;

public class PlayerChildApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        PlayerChildApi apiInstance = new PlayerChildApi();
        Integer customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
        Customer_customerId_body_1 body = ; // Customer_customerId_body_1 | 
        try {
            array[PlayerNormalizer] result = apiInstance.playerListChild_0(customerId, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling PlayerChildApi#playerListChild_0");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.PlayerChildApi;

public class PlayerChildApiExample {

    public static void main(String[] args) {
        PlayerChildApi apiInstance = new PlayerChildApi();
        Integer customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
        Customer_customerId_body_1 body = ; // Customer_customerId_body_1 | 
        try {
            array[PlayerNormalizer] result = apiInstance.playerListChild_0(customerId, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling PlayerChildApi#playerListChild_0");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *customerId = 56; // ID de customer relacionado con el usuario que realiza la petición.
Customer_customerId_body_1 *body = ; //  (optional)

PlayerChildApi *apiInstance = [[PlayerChildApi alloc] init];

[apiInstance playerListChild_1With:customerId
    body:body
              completionHandler: ^(array[PlayerNormalizer] output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.PlayerChildApi()
var customerId = 56; // {{Integer}} ID de customer relacionado con el usuario que realiza la petición.
var opts = { 
  'body':  // {{Customer_customerId_body_1}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.playerListChild_0(customerId, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class playerListChild_0Example
    {
        public void main()
        {


            var apiInstance = new PlayerChildApi();
            var customerId = 56;  // Integer | ID de customer relacionado con el usuario que realiza la petición.
            var body = new Customer_customerId_body_1(); // Customer_customerId_body_1 |  (optional) 

            try
            {
                array[PlayerNormalizer] result = apiInstance.playerListChild_0(customerId, body);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling PlayerChildApi.playerListChild_0: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiPlayerChildApi();
$customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
$body = ; // Customer_customerId_body_1 | 

try {
    $result = $api_instance->playerListChild_0($customerId, $body);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling PlayerChildApi->playerListChild_0: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::PlayerChildApi;


my $api_instance = WWW::SwaggerClient::PlayerChildApi->new();
my $customerId = 56; # Integer | ID de customer relacionado con el usuario que realiza la petición.
my $body = WWW::SwaggerClient::Object::Customer_customerId_body_1->new(); # Customer_customerId_body_1 | 

eval { 
    my $result = $api_instance->playerListChild_0(customerId => $customerId, body => $body);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling PlayerChildApi->playerListChild_0: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.PlayerChildApi()
customerId = 56 # Integer | ID de customer relacionado con el usuario que realiza la petición.
body =  # Customer_customerId_body_1 |  (optional)

try: 
    api_response = api_instance.player_list_child_0(customerId, body=body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling PlayerChildApi->playerListChild_0: %s\n" % e)

Parameters

Path parameters
Name Description
customerId*
Integer
ID de customer relacionado con el usuario que realiza la petición.
Required
Body parameters
Name Description
body

Responses

Status: 200 - Respuesta de listado de modelos 'PlayerNormalizer'.

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


playerUpdateChildApiKey

Editar el modelo 'Player' relacionado con customer que corresponde a parametro 'inPath' {customerId}


/stateless/player/customer/{customerId}/{playerId}

Usage and SDK Samples

curl -X PUT\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
-H "Content-Type: application/json"\
"https://{env}.nsign.tv/stateless/player/customer/{customerId}/{playerId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.PlayerChildApi;

import java.io.File;
import java.util.*;

public class PlayerChildApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        PlayerChildApi apiInstance = new PlayerChildApi();
         customerId = ; //  | ID de customer relacionado con el usuario que realiza la petición.
        Integer playerId = 56; // Integer | ID de modelo 'Player' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
        PlayerPost body = ; // PlayerPost | 
        try {
            PlayerGet result = apiInstance.playerUpdateChildApiKey(customerId, playerId, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling PlayerChildApi#playerUpdateChildApiKey");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.PlayerChildApi;

public class PlayerChildApiExample {

    public static void main(String[] args) {
        PlayerChildApi apiInstance = new PlayerChildApi();
         customerId = ; //  | ID de customer relacionado con el usuario que realiza la petición.
        Integer playerId = 56; // Integer | ID de modelo 'Player' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
        PlayerPost body = ; // PlayerPost | 
        try {
            PlayerGet result = apiInstance.playerUpdateChildApiKey(customerId, playerId, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling PlayerChildApi#playerUpdateChildApiKey");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
 *customerId = ; // ID de customer relacionado con el usuario que realiza la petición.
Integer *playerId = 56; // ID de modelo 'Player' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
PlayerPost *body = ; //  (optional)

PlayerChildApi *apiInstance = [[PlayerChildApi alloc] init];

[apiInstance playerUpdateChildApiKeyWith:customerId
    playerId:playerId
    body:body
              completionHandler: ^(PlayerGet output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.PlayerChildApi()
var customerId = ; // {{}} ID de customer relacionado con el usuario que realiza la petición.
var playerId = 56; // {{Integer}} ID de modelo 'Player' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
var opts = { 
  'body':  // {{PlayerPost}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.playerUpdateChildApiKey(customerIdplayerId, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class playerUpdateChildApiKeyExample
    {
        public void main()
        {


            var apiInstance = new PlayerChildApi();
            var customerId = new (); //  | ID de customer relacionado con el usuario que realiza la petición.
            var playerId = 56;  // Integer | ID de modelo 'Player' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
            var body = new PlayerPost(); // PlayerPost |  (optional) 

            try
            {
                PlayerGet result = apiInstance.playerUpdateChildApiKey(customerId, playerId, body);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling PlayerChildApi.playerUpdateChildApiKey: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiPlayerChildApi();
$customerId = ; //  | ID de customer relacionado con el usuario que realiza la petición.
$playerId = 56; // Integer | ID de modelo 'Player' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
$body = ; // PlayerPost | 

try {
    $result = $api_instance->playerUpdateChildApiKey($customerId, $playerId, $body);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling PlayerChildApi->playerUpdateChildApiKey: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::PlayerChildApi;


my $api_instance = WWW::SwaggerClient::PlayerChildApi->new();
my $customerId = ; #  | ID de customer relacionado con el usuario que realiza la petición.
my $playerId = 56; # Integer | ID de modelo 'Player' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
my $body = WWW::SwaggerClient::Object::PlayerPost->new(); # PlayerPost | 

eval { 
    my $result = $api_instance->playerUpdateChildApiKey(customerId => $customerId, playerId => $playerId, body => $body);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling PlayerChildApi->playerUpdateChildApiKey: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.PlayerChildApi()
customerId =  #  | ID de customer relacionado con el usuario que realiza la petición.
playerId = 56 # Integer | ID de modelo 'Player' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
body =  # PlayerPost |  (optional)

try: 
    api_response = api_instance.player_update_child_api_key(customerId, playerId, body=body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling PlayerChildApi->playerUpdateChildApiKey: %s\n" % e)

Parameters

Path parameters
Name Description
customerId*
ID de customer relacionado con el usuario que realiza la petición.
Required
playerId*
Integer
ID de modelo 'Player' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
Required
Body parameters
Name Description
body

Responses

Status: 200 - Respuesta de modelo 'PlayerGet'

Status: 400 - Los parametros incompatibles

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


PlayerEditorShow

putApkManagerUpdateApkEditorShow

Actualizar el estado del campo de si debe mostrarse el registro en la ficha de player.


/update/apk/{id}/playerEditShow

Usage and SDK Samples

curl -X PUT\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
-H "Content-Type: text/plain"\
"https://{env}.nsign.tv/update/apk/{id}/playerEditShow"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.PlayerEditorShowApi;

import java.io.File;
import java.util.*;

public class PlayerEditorShowApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        PlayerEditorShowApi apiInstance = new PlayerEditorShowApi();
        Integer id = 56; // Integer |  Id de aplicaiones.
        try {
            apiInstance.putApkManagerUpdateApkEditorShow(id);
        } catch (ApiException e) {
            System.err.println("Exception when calling PlayerEditorShowApi#putApkManagerUpdateApkEditorShow");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.PlayerEditorShowApi;

public class PlayerEditorShowApiExample {

    public static void main(String[] args) {
        PlayerEditorShowApi apiInstance = new PlayerEditorShowApi();
        Integer id = 56; // Integer |  Id de aplicaiones.
        try {
            apiInstance.putApkManagerUpdateApkEditorShow(id);
        } catch (ApiException e) {
            System.err.println("Exception when calling PlayerEditorShowApi#putApkManagerUpdateApkEditorShow");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *id = 56; //  Id de aplicaiones.

PlayerEditorShowApi *apiInstance = [[PlayerEditorShowApi alloc] init];

[apiInstance putApkManagerUpdateApkEditorShowWith:id
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.PlayerEditorShowApi()
var id = 56; // {{Integer}}  Id de aplicaiones.

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.putApkManagerUpdateApkEditorShow(id, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class putApkManagerUpdateApkEditorShowExample
    {
        public void main()
        {


            var apiInstance = new PlayerEditorShowApi();
            var id = 56;  // Integer |  Id de aplicaiones.

            try
            {
                apiInstance.putApkManagerUpdateApkEditorShow(id);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling PlayerEditorShowApi.putApkManagerUpdateApkEditorShow: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiPlayerEditorShowApi();
$id = 56; // Integer |  Id de aplicaiones.

try {
    $api_instance->putApkManagerUpdateApkEditorShow($id);
} catch (Exception $e) {
    echo 'Exception when calling PlayerEditorShowApi->putApkManagerUpdateApkEditorShow: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::PlayerEditorShowApi;


my $api_instance = WWW::SwaggerClient::PlayerEditorShowApi->new();
my $id = 56; # Integer |  Id de aplicaiones.

eval { 
    $api_instance->putApkManagerUpdateApkEditorShow(id => $id);
};
if ($@) {
    warn "Exception when calling PlayerEditorShowApi->putApkManagerUpdateApkEditorShow: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.PlayerEditorShowApi()
id = 56 # Integer |  Id de aplicaiones.

try: 
    api_instance.put_apk_manager_update_apk_editor_show(id)
except ApiException as e:
    print("Exception when calling PlayerEditorShowApi->putApkManagerUpdateApkEditorShow: %s\n" % e)

Parameters

Path parameters
Name Description
id*
Integer
Id de aplicaiones.
Required

Responses

Status: 200 - Guardado correctamente.

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


Playlist

playlistCreate

Crear un nuevo modelo 'Playlist' relacionado con el usuario que realiza la petición.


/playlist/format/{playlistFormatId}

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
-H "Content-Type: application/json"\
"https://{env}.nsign.tv/playlist/format/{playlistFormatId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.PlaylistApi;

import java.io.File;
import java.util.*;

public class PlaylistApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        PlaylistApi apiInstance = new PlaylistApi();
        Integer playlistFormatId = 56; // Integer | ID de modelo 'PlaylistFormat'.
        Playlist body = ; // Playlist | 
        try {
            PlaylistGet result = apiInstance.playlistCreate(playlistFormatId, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling PlaylistApi#playlistCreate");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.PlaylistApi;

public class PlaylistApiExample {

    public static void main(String[] args) {
        PlaylistApi apiInstance = new PlaylistApi();
        Integer playlistFormatId = 56; // Integer | ID de modelo 'PlaylistFormat'.
        Playlist body = ; // Playlist | 
        try {
            PlaylistGet result = apiInstance.playlistCreate(playlistFormatId, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling PlaylistApi#playlistCreate");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *playlistFormatId = 56; // ID de modelo 'PlaylistFormat'.
Playlist *body = ; //  (optional)

PlaylistApi *apiInstance = [[PlaylistApi alloc] init];

[apiInstance playlistCreateWith:playlistFormatId
    body:body
              completionHandler: ^(PlaylistGet output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.PlaylistApi()
var playlistFormatId = 56; // {{Integer}} ID de modelo 'PlaylistFormat'.
var opts = { 
  'body':  // {{Playlist}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.playlistCreate(playlistFormatId, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class playlistCreateExample
    {
        public void main()
        {


            var apiInstance = new PlaylistApi();
            var playlistFormatId = 56;  // Integer | ID de modelo 'PlaylistFormat'.
            var body = new Playlist(); // Playlist |  (optional) 

            try
            {
                PlaylistGet result = apiInstance.playlistCreate(playlistFormatId, body);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling PlaylistApi.playlistCreate: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiPlaylistApi();
$playlistFormatId = 56; // Integer | ID de modelo 'PlaylistFormat'.
$body = ; // Playlist | 

try {
    $result = $api_instance->playlistCreate($playlistFormatId, $body);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling PlaylistApi->playlistCreate: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::PlaylistApi;


my $api_instance = WWW::SwaggerClient::PlaylistApi->new();
my $playlistFormatId = 56; # Integer | ID de modelo 'PlaylistFormat'.
my $body = WWW::SwaggerClient::Object::Playlist->new(); # Playlist | 

eval { 
    my $result = $api_instance->playlistCreate(playlistFormatId => $playlistFormatId, body => $body);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling PlaylistApi->playlistCreate: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.PlaylistApi()
playlistFormatId = 56 # Integer | ID de modelo 'PlaylistFormat'.
body =  # Playlist |  (optional)

try: 
    api_response = api_instance.playlist_create(playlistFormatId, body=body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling PlaylistApi->playlistCreate: %s\n" % e)

Parameters

Path parameters
Name Description
playlistFormatId*
Integer
ID de modelo 'PlaylistFormat'.
Required
Body parameters
Name Description
body

Responses

Status: 200 - Respuesta de modelo 'PlaylistGet'.

Status: 400 - Los parametros incompatibles

Status: 401 - El token no es válido

Status: 404 - El modelo no encontrado


playlistDelete

Eliminar el modelo 'Playlist' que corresponde a parametro 'inPath' {playlistId}.


/playlist/{playlistId}

Usage and SDK Samples

curl -X DELETE\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/playlist/{playlistId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.PlaylistApi;

import java.io.File;
import java.util.*;

public class PlaylistApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        PlaylistApi apiInstance = new PlaylistApi();
        Integer playlistId = 56; // Integer | ID de modelo 'Playlist' relacionado con el usuario que realiza la petición.
        try {
            apiInstance.playlistDelete(playlistId);
        } catch (ApiException e) {
            System.err.println("Exception when calling PlaylistApi#playlistDelete");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.PlaylistApi;

public class PlaylistApiExample {

    public static void main(String[] args) {
        PlaylistApi apiInstance = new PlaylistApi();
        Integer playlistId = 56; // Integer | ID de modelo 'Playlist' relacionado con el usuario que realiza la petición.
        try {
            apiInstance.playlistDelete(playlistId);
        } catch (ApiException e) {
            System.err.println("Exception when calling PlaylistApi#playlistDelete");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *playlistId = 56; // ID de modelo 'Playlist' relacionado con el usuario que realiza la petición.

PlaylistApi *apiInstance = [[PlaylistApi alloc] init];

[apiInstance playlistDeleteWith:playlistId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.PlaylistApi()
var playlistId = 56; // {{Integer}} ID de modelo 'Playlist' relacionado con el usuario que realiza la petición.

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.playlistDelete(playlistId, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class playlistDeleteExample
    {
        public void main()
        {


            var apiInstance = new PlaylistApi();
            var playlistId = 56;  // Integer | ID de modelo 'Playlist' relacionado con el usuario que realiza la petición.

            try
            {
                apiInstance.playlistDelete(playlistId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling PlaylistApi.playlistDelete: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiPlaylistApi();
$playlistId = 56; // Integer | ID de modelo 'Playlist' relacionado con el usuario que realiza la petición.

try {
    $api_instance->playlistDelete($playlistId);
} catch (Exception $e) {
    echo 'Exception when calling PlaylistApi->playlistDelete: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::PlaylistApi;


my $api_instance = WWW::SwaggerClient::PlaylistApi->new();
my $playlistId = 56; # Integer | ID de modelo 'Playlist' relacionado con el usuario que realiza la petición.

eval { 
    $api_instance->playlistDelete(playlistId => $playlistId);
};
if ($@) {
    warn "Exception when calling PlaylistApi->playlistDelete: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.PlaylistApi()
playlistId = 56 # Integer | ID de modelo 'Playlist' relacionado con el usuario que realiza la petición.

try: 
    api_instance.playlist_delete(playlistId)
except ApiException as e:
    print("Exception when calling PlaylistApi->playlistDelete: %s\n" % e)

Parameters

Path parameters
Name Description
playlistId*
Integer
ID de modelo 'Playlist' relacionado con el usuario que realiza la petición.
Required

Responses

Status: 200 - Confirmación de acción.

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


playlistGet

Información completa de un contenido multimedia relacionada con el modelo que corresponde a parametro 'inPath' {playlistId}.


/playlist/{playlistId}

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/playlist/{playlistId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.PlaylistApi;

import java.io.File;
import java.util.*;

public class PlaylistApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        PlaylistApi apiInstance = new PlaylistApi();
        Integer playlistId = 56; // Integer | ID de modelo 'Playlist' relacionado con el usuario que realiza la petición.
        try {
            PlaylistGet result = apiInstance.playlistGet(playlistId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling PlaylistApi#playlistGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.PlaylistApi;

public class PlaylistApiExample {

    public static void main(String[] args) {
        PlaylistApi apiInstance = new PlaylistApi();
        Integer playlistId = 56; // Integer | ID de modelo 'Playlist' relacionado con el usuario que realiza la petición.
        try {
            PlaylistGet result = apiInstance.playlistGet(playlistId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling PlaylistApi#playlistGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *playlistId = 56; // ID de modelo 'Playlist' relacionado con el usuario que realiza la petición.

PlaylistApi *apiInstance = [[PlaylistApi alloc] init];

[apiInstance playlistGetWith:playlistId
              completionHandler: ^(PlaylistGet output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.PlaylistApi()
var playlistId = 56; // {{Integer}} ID de modelo 'Playlist' relacionado con el usuario que realiza la petición.

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.playlistGet(playlistId, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class playlistGetExample
    {
        public void main()
        {


            var apiInstance = new PlaylistApi();
            var playlistId = 56;  // Integer | ID de modelo 'Playlist' relacionado con el usuario que realiza la petición.

            try
            {
                PlaylistGet result = apiInstance.playlistGet(playlistId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling PlaylistApi.playlistGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiPlaylistApi();
$playlistId = 56; // Integer | ID de modelo 'Playlist' relacionado con el usuario que realiza la petición.

try {
    $result = $api_instance->playlistGet($playlistId);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling PlaylistApi->playlistGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::PlaylistApi;


my $api_instance = WWW::SwaggerClient::PlaylistApi->new();
my $playlistId = 56; # Integer | ID de modelo 'Playlist' relacionado con el usuario que realiza la petición.

eval { 
    my $result = $api_instance->playlistGet(playlistId => $playlistId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling PlaylistApi->playlistGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.PlaylistApi()
playlistId = 56 # Integer | ID de modelo 'Playlist' relacionado con el usuario que realiza la petición.

try: 
    api_response = api_instance.playlist_get(playlistId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling PlaylistApi->playlistGet: %s\n" % e)

Parameters

Path parameters
Name Description
playlistId*
Integer
ID de modelo 'Playlist' relacionado con el usuario que realiza la petición.
Required

Responses

Status: 200 - Respuesta de modelo 'PlaylistGet'.

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


playlistList

Listado de modelos 'PlaylistNormalizer' relacionados con el usuario que realiza la petición.


/playlists

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/playlists"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.PlaylistApi;

import java.io.File;
import java.util.*;

public class PlaylistApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        PlaylistApi apiInstance = new PlaylistApi();
        try {
            array[PlaylistNormalizer] result = apiInstance.playlistList();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling PlaylistApi#playlistList");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.PlaylistApi;

public class PlaylistApiExample {

    public static void main(String[] args) {
        PlaylistApi apiInstance = new PlaylistApi();
        try {
            array[PlaylistNormalizer] result = apiInstance.playlistList();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling PlaylistApi#playlistList");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];

PlaylistApi *apiInstance = [[PlaylistApi alloc] init];

[apiInstance playlistListWithCompletionHandler: 
              ^(array[PlaylistNormalizer] output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.PlaylistApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.playlistList(callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class playlistListExample
    {
        public void main()
        {


            var apiInstance = new PlaylistApi();

            try
            {
                array[PlaylistNormalizer] result = apiInstance.playlistList();
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling PlaylistApi.playlistList: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiPlaylistApi();

try {
    $result = $api_instance->playlistList();
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling PlaylistApi->playlistList: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::PlaylistApi;


my $api_instance = WWW::SwaggerClient::PlaylistApi->new();

eval { 
    my $result = $api_instance->playlistList();
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling PlaylistApi->playlistList: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.PlaylistApi()

try: 
    api_response = api_instance.playlist_list()
    pprint(api_response)
except ApiException as e:
    print("Exception when calling PlaylistApi->playlistList: %s\n" % e)

Parameters

Responses

Status: 200 - Respuesta de listado de modelos 'PlaylistNormalizer'.

Status: 401 - El token no es válido


playlistType

Listado de modelos 'PlaylistFormat'. Parámetro obligatorio en creación de modelo 'Playlist'.


/playlist/types

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/playlist/types"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.PlaylistApi;

import java.io.File;
import java.util.*;

public class PlaylistApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        PlaylistApi apiInstance = new PlaylistApi();
        try {
            array[PlaylistFormat] result = apiInstance.playlistType();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling PlaylistApi#playlistType");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.PlaylistApi;

public class PlaylistApiExample {

    public static void main(String[] args) {
        PlaylistApi apiInstance = new PlaylistApi();
        try {
            array[PlaylistFormat] result = apiInstance.playlistType();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling PlaylistApi#playlistType");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];

PlaylistApi *apiInstance = [[PlaylistApi alloc] init];

[apiInstance playlistTypeWithCompletionHandler: 
              ^(array[PlaylistFormat] output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.PlaylistApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.playlistType(callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class playlistTypeExample
    {
        public void main()
        {


            var apiInstance = new PlaylistApi();

            try
            {
                array[PlaylistFormat] result = apiInstance.playlistType();
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling PlaylistApi.playlistType: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiPlaylistApi();

try {
    $result = $api_instance->playlistType();
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling PlaylistApi->playlistType: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::PlaylistApi;


my $api_instance = WWW::SwaggerClient::PlaylistApi->new();

eval { 
    my $result = $api_instance->playlistType();
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling PlaylistApi->playlistType: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.PlaylistApi()

try: 
    api_response = api_instance.playlist_type()
    pprint(api_response)
except ApiException as e:
    print("Exception when calling PlaylistApi->playlistType: %s\n" % e)

Parameters

Responses

Status: 200 - Respuesta de listado de modelos 'PlaylistFormat'.

Status: 401 - El token no es válido


playlistUpdate

Editar el modelo 'Playlist' que corresponde a parametro 'inPath' {playlistId}.


/playlist/{playlistId}

Usage and SDK Samples

curl -X PUT\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
-H "Content-Type: application/json"\
"https://{env}.nsign.tv/playlist/{playlistId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.PlaylistApi;

import java.io.File;
import java.util.*;

public class PlaylistApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        PlaylistApi apiInstance = new PlaylistApi();
        Integer playlistId = 56; // Integer | ID de modelo 'Playlist' relacionado con el usuario que realiza la petición.
        PlaylistPut body = ; // PlaylistPut | 
        try {
            PlaylistGet result = apiInstance.playlistUpdate(playlistId, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling PlaylistApi#playlistUpdate");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.PlaylistApi;

public class PlaylistApiExample {

    public static void main(String[] args) {
        PlaylistApi apiInstance = new PlaylistApi();
        Integer playlistId = 56; // Integer | ID de modelo 'Playlist' relacionado con el usuario que realiza la petición.
        PlaylistPut body = ; // PlaylistPut | 
        try {
            PlaylistGet result = apiInstance.playlistUpdate(playlistId, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling PlaylistApi#playlistUpdate");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *playlistId = 56; // ID de modelo 'Playlist' relacionado con el usuario que realiza la petición.
PlaylistPut *body = ; //  (optional)

PlaylistApi *apiInstance = [[PlaylistApi alloc] init];

[apiInstance playlistUpdateWith:playlistId
    body:body
              completionHandler: ^(PlaylistGet output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.PlaylistApi()
var playlistId = 56; // {{Integer}} ID de modelo 'Playlist' relacionado con el usuario que realiza la petición.
var opts = { 
  'body':  // {{PlaylistPut}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.playlistUpdate(playlistId, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class playlistUpdateExample
    {
        public void main()
        {


            var apiInstance = new PlaylistApi();
            var playlistId = 56;  // Integer | ID de modelo 'Playlist' relacionado con el usuario que realiza la petición.
            var body = new PlaylistPut(); // PlaylistPut |  (optional) 

            try
            {
                PlaylistGet result = apiInstance.playlistUpdate(playlistId, body);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling PlaylistApi.playlistUpdate: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiPlaylistApi();
$playlistId = 56; // Integer | ID de modelo 'Playlist' relacionado con el usuario que realiza la petición.
$body = ; // PlaylistPut | 

try {
    $result = $api_instance->playlistUpdate($playlistId, $body);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling PlaylistApi->playlistUpdate: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::PlaylistApi;


my $api_instance = WWW::SwaggerClient::PlaylistApi->new();
my $playlistId = 56; # Integer | ID de modelo 'Playlist' relacionado con el usuario que realiza la petición.
my $body = WWW::SwaggerClient::Object::PlaylistPut->new(); # PlaylistPut | 

eval { 
    my $result = $api_instance->playlistUpdate(playlistId => $playlistId, body => $body);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling PlaylistApi->playlistUpdate: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.PlaylistApi()
playlistId = 56 # Integer | ID de modelo 'Playlist' relacionado con el usuario que realiza la petición.
body =  # PlaylistPut |  (optional)

try: 
    api_response = api_instance.playlist_update(playlistId, body=body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling PlaylistApi->playlistUpdate: %s\n" % e)

Parameters

Path parameters
Name Description
playlistId*
Integer
ID de modelo 'Playlist' relacionado con el usuario que realiza la petición.
Required
Body parameters
Name Description
body

Responses

Status: 200 - Respuesta de modelo 'PlaylistGet'.

Status: 400 - Los parametros incompatibles

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


PlaylistChild

playlistCreateChild

Crear un nuevo modelo 'Playlist' para customer que corresponde a parametro 'inPath' {customerId}.


/playlist/customer/{customerId}/format/{playlistFormatId}

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
-H "Content-Type: application/json"\
"https://{env}.nsign.tv/playlist/customer/{customerId}/format/{playlistFormatId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.PlaylistChildApi;

import java.io.File;
import java.util.*;

public class PlaylistChildApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        PlaylistChildApi apiInstance = new PlaylistChildApi();
        Integer customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
        Integer playlistFormatId = 56; // Integer | ID de modelo 'PlaylistFormat'.
        Playlist body = ; // Playlist | 
        try {
            PlaylistGet result = apiInstance.playlistCreateChild(customerId, playlistFormatId, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling PlaylistChildApi#playlistCreateChild");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.PlaylistChildApi;

public class PlaylistChildApiExample {

    public static void main(String[] args) {
        PlaylistChildApi apiInstance = new PlaylistChildApi();
        Integer customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
        Integer playlistFormatId = 56; // Integer | ID de modelo 'PlaylistFormat'.
        Playlist body = ; // Playlist | 
        try {
            PlaylistGet result = apiInstance.playlistCreateChild(customerId, playlistFormatId, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling PlaylistChildApi#playlistCreateChild");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *customerId = 56; // ID de customer relacionado con el usuario que realiza la petición.
Integer *playlistFormatId = 56; // ID de modelo 'PlaylistFormat'.
Playlist *body = ; //  (optional)

PlaylistChildApi *apiInstance = [[PlaylistChildApi alloc] init];

[apiInstance playlistCreateChildWith:customerId
    playlistFormatId:playlistFormatId
    body:body
              completionHandler: ^(PlaylistGet output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.PlaylistChildApi()
var customerId = 56; // {{Integer}} ID de customer relacionado con el usuario que realiza la petición.
var playlistFormatId = 56; // {{Integer}} ID de modelo 'PlaylistFormat'.
var opts = { 
  'body':  // {{Playlist}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.playlistCreateChild(customerIdplaylistFormatId, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class playlistCreateChildExample
    {
        public void main()
        {


            var apiInstance = new PlaylistChildApi();
            var customerId = 56;  // Integer | ID de customer relacionado con el usuario que realiza la petición.
            var playlistFormatId = 56;  // Integer | ID de modelo 'PlaylistFormat'.
            var body = new Playlist(); // Playlist |  (optional) 

            try
            {
                PlaylistGet result = apiInstance.playlistCreateChild(customerId, playlistFormatId, body);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling PlaylistChildApi.playlistCreateChild: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiPlaylistChildApi();
$customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
$playlistFormatId = 56; // Integer | ID de modelo 'PlaylistFormat'.
$body = ; // Playlist | 

try {
    $result = $api_instance->playlistCreateChild($customerId, $playlistFormatId, $body);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling PlaylistChildApi->playlistCreateChild: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::PlaylistChildApi;


my $api_instance = WWW::SwaggerClient::PlaylistChildApi->new();
my $customerId = 56; # Integer | ID de customer relacionado con el usuario que realiza la petición.
my $playlistFormatId = 56; # Integer | ID de modelo 'PlaylistFormat'.
my $body = WWW::SwaggerClient::Object::Playlist->new(); # Playlist | 

eval { 
    my $result = $api_instance->playlistCreateChild(customerId => $customerId, playlistFormatId => $playlistFormatId, body => $body);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling PlaylistChildApi->playlistCreateChild: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.PlaylistChildApi()
customerId = 56 # Integer | ID de customer relacionado con el usuario que realiza la petición.
playlistFormatId = 56 # Integer | ID de modelo 'PlaylistFormat'.
body =  # Playlist |  (optional)

try: 
    api_response = api_instance.playlist_create_child(customerId, playlistFormatId, body=body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling PlaylistChildApi->playlistCreateChild: %s\n" % e)

Parameters

Path parameters
Name Description
customerId*
Integer
ID de customer relacionado con el usuario que realiza la petición.
Required
playlistFormatId*
Integer
ID de modelo 'PlaylistFormat'.
Required
Body parameters
Name Description
body

Responses

Status: 200 - Respuesta de modelo 'PlaylistGet'.

Status: 400 - Los parametros incompatibles

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


playlistDeleteChild

Eliminar el modelo 'Playlist' relacionado con customer que corresponde a parametro 'inPath' {customerId}.


/playlist/customer/{customerId}/{playlistId}

Usage and SDK Samples

curl -X DELETE\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/playlist/customer/{customerId}/{playlistId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.PlaylistChildApi;

import java.io.File;
import java.util.*;

public class PlaylistChildApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        PlaylistChildApi apiInstance = new PlaylistChildApi();
        Integer playlistId = 56; // Integer | ID de modelo 'Playlist' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
        Integer customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
        try {
            apiInstance.playlistDeleteChild(playlistId, customerId);
        } catch (ApiException e) {
            System.err.println("Exception when calling PlaylistChildApi#playlistDeleteChild");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.PlaylistChildApi;

public class PlaylistChildApiExample {

    public static void main(String[] args) {
        PlaylistChildApi apiInstance = new PlaylistChildApi();
        Integer playlistId = 56; // Integer | ID de modelo 'Playlist' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
        Integer customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
        try {
            apiInstance.playlistDeleteChild(playlistId, customerId);
        } catch (ApiException e) {
            System.err.println("Exception when calling PlaylistChildApi#playlistDeleteChild");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *playlistId = 56; // ID de modelo 'Playlist' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
Integer *customerId = 56; // ID de customer relacionado con el usuario que realiza la petición.

PlaylistChildApi *apiInstance = [[PlaylistChildApi alloc] init];

[apiInstance playlistDeleteChildWith:playlistId
    customerId:customerId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.PlaylistChildApi()
var playlistId = 56; // {{Integer}} ID de modelo 'Playlist' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
var customerId = 56; // {{Integer}} ID de customer relacionado con el usuario que realiza la petición.

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.playlistDeleteChild(playlistId, customerId, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class playlistDeleteChildExample
    {
        public void main()
        {


            var apiInstance = new PlaylistChildApi();
            var playlistId = 56;  // Integer | ID de modelo 'Playlist' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
            var customerId = 56;  // Integer | ID de customer relacionado con el usuario que realiza la petición.

            try
            {
                apiInstance.playlistDeleteChild(playlistId, customerId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling PlaylistChildApi.playlistDeleteChild: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiPlaylistChildApi();
$playlistId = 56; // Integer | ID de modelo 'Playlist' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
$customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.

try {
    $api_instance->playlistDeleteChild($playlistId, $customerId);
} catch (Exception $e) {
    echo 'Exception when calling PlaylistChildApi->playlistDeleteChild: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::PlaylistChildApi;


my $api_instance = WWW::SwaggerClient::PlaylistChildApi->new();
my $playlistId = 56; # Integer | ID de modelo 'Playlist' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
my $customerId = 56; # Integer | ID de customer relacionado con el usuario que realiza la petición.

eval { 
    $api_instance->playlistDeleteChild(playlistId => $playlistId, customerId => $customerId);
};
if ($@) {
    warn "Exception when calling PlaylistChildApi->playlistDeleteChild: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.PlaylistChildApi()
playlistId = 56 # Integer | ID de modelo 'Playlist' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
customerId = 56 # Integer | ID de customer relacionado con el usuario que realiza la petición.

try: 
    api_instance.playlist_delete_child(playlistId, customerId)
except ApiException as e:
    print("Exception when calling PlaylistChildApi->playlistDeleteChild: %s\n" % e)

Parameters

Path parameters
Name Description
playlistId*
Integer
ID de modelo 'Playlist' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
Required
customerId*
Integer
ID de customer relacionado con el usuario que realiza la petición.
Required

Responses

Status: 200 - Confirmación de acción.

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


playlistGetChild

Información completa de un contenido multimedia relacionada con el modelo que corresponde a parametro 'inPath' {playlistId}.


/playlist/customer/{customerId}/{playlistId}

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/playlist/customer/{customerId}/{playlistId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.PlaylistChildApi;

import java.io.File;
import java.util.*;

public class PlaylistChildApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        PlaylistChildApi apiInstance = new PlaylistChildApi();
        Integer customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
        Integer playlistId = 56; // Integer | ID de modelo 'Playlist' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
        try {
            PlaylistGet result = apiInstance.playlistGetChild(customerId, playlistId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling PlaylistChildApi#playlistGetChild");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.PlaylistChildApi;

public class PlaylistChildApiExample {

    public static void main(String[] args) {
        PlaylistChildApi apiInstance = new PlaylistChildApi();
        Integer customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
        Integer playlistId = 56; // Integer | ID de modelo 'Playlist' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
        try {
            PlaylistGet result = apiInstance.playlistGetChild(customerId, playlistId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling PlaylistChildApi#playlistGetChild");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *customerId = 56; // ID de customer relacionado con el usuario que realiza la petición.
Integer *playlistId = 56; // ID de modelo 'Playlist' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.

PlaylistChildApi *apiInstance = [[PlaylistChildApi alloc] init];

[apiInstance playlistGetChildWith:customerId
    playlistId:playlistId
              completionHandler: ^(PlaylistGet output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.PlaylistChildApi()
var customerId = 56; // {{Integer}} ID de customer relacionado con el usuario que realiza la petición.
var playlistId = 56; // {{Integer}} ID de modelo 'Playlist' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.playlistGetChild(customerId, playlistId, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class playlistGetChildExample
    {
        public void main()
        {


            var apiInstance = new PlaylistChildApi();
            var customerId = 56;  // Integer | ID de customer relacionado con el usuario que realiza la petición.
            var playlistId = 56;  // Integer | ID de modelo 'Playlist' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.

            try
            {
                PlaylistGet result = apiInstance.playlistGetChild(customerId, playlistId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling PlaylistChildApi.playlistGetChild: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiPlaylistChildApi();
$customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
$playlistId = 56; // Integer | ID de modelo 'Playlist' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.

try {
    $result = $api_instance->playlistGetChild($customerId, $playlistId);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling PlaylistChildApi->playlistGetChild: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::PlaylistChildApi;


my $api_instance = WWW::SwaggerClient::PlaylistChildApi->new();
my $customerId = 56; # Integer | ID de customer relacionado con el usuario que realiza la petición.
my $playlistId = 56; # Integer | ID de modelo 'Playlist' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.

eval { 
    my $result = $api_instance->playlistGetChild(customerId => $customerId, playlistId => $playlistId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling PlaylistChildApi->playlistGetChild: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.PlaylistChildApi()
customerId = 56 # Integer | ID de customer relacionado con el usuario que realiza la petición.
playlistId = 56 # Integer | ID de modelo 'Playlist' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.

try: 
    api_response = api_instance.playlist_get_child(customerId, playlistId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling PlaylistChildApi->playlistGetChild: %s\n" % e)

Parameters

Path parameters
Name Description
customerId*
Integer
ID de customer relacionado con el usuario que realiza la petición.
Required
playlistId*
Integer
ID de modelo 'Playlist' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
Required

Responses

Status: 200 - Respuesta de modelo 'PlaylistGet'

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


playlistListChild

Listado de modelos 'PlaylistNormalizer' relacionados con el customer que corresponde a parametro 'inPath' {customerId}


/playlists/customer/{customerId}

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/playlists/customer/{customerId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.PlaylistChildApi;

import java.io.File;
import java.util.*;

public class PlaylistChildApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        PlaylistChildApi apiInstance = new PlaylistChildApi();
        Integer customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
        try {
            array[PlaylistNormalizer] result = apiInstance.playlistListChild(customerId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling PlaylistChildApi#playlistListChild");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.PlaylistChildApi;

public class PlaylistChildApiExample {

    public static void main(String[] args) {
        PlaylistChildApi apiInstance = new PlaylistChildApi();
        Integer customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
        try {
            array[PlaylistNormalizer] result = apiInstance.playlistListChild(customerId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling PlaylistChildApi#playlistListChild");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *customerId = 56; // ID de customer relacionado con el usuario que realiza la petición.

PlaylistChildApi *apiInstance = [[PlaylistChildApi alloc] init];

[apiInstance playlistListChildWith:customerId
              completionHandler: ^(array[PlaylistNormalizer] output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.PlaylistChildApi()
var customerId = 56; // {{Integer}} ID de customer relacionado con el usuario que realiza la petición.

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.playlistListChild(customerId, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class playlistListChildExample
    {
        public void main()
        {


            var apiInstance = new PlaylistChildApi();
            var customerId = 56;  // Integer | ID de customer relacionado con el usuario que realiza la petición.

            try
            {
                array[PlaylistNormalizer] result = apiInstance.playlistListChild(customerId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling PlaylistChildApi.playlistListChild: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiPlaylistChildApi();
$customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.

try {
    $result = $api_instance->playlistListChild($customerId);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling PlaylistChildApi->playlistListChild: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::PlaylistChildApi;


my $api_instance = WWW::SwaggerClient::PlaylistChildApi->new();
my $customerId = 56; # Integer | ID de customer relacionado con el usuario que realiza la petición.

eval { 
    my $result = $api_instance->playlistListChild(customerId => $customerId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling PlaylistChildApi->playlistListChild: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.PlaylistChildApi()
customerId = 56 # Integer | ID de customer relacionado con el usuario que realiza la petición.

try: 
    api_response = api_instance.playlist_list_child(customerId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling PlaylistChildApi->playlistListChild: %s\n" % e)

Parameters

Path parameters
Name Description
customerId*
Integer
ID de customer relacionado con el usuario que realiza la petición.
Required

Responses

Status: 200 - Respuesta de listado de modelos 'PlaylistNormalizer'.

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


playlistUpdateChild

Editar el modelo 'Playlist' relacionado con customer que corresponde a parametro 'inPath' {customerId}


/playlist/customer/{customerId}/{playlistId}

Usage and SDK Samples

curl -X PUT\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
-H "Content-Type: application/json"\
"https://{env}.nsign.tv/playlist/customer/{customerId}/{playlistId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.PlaylistChildApi;

import java.io.File;
import java.util.*;

public class PlaylistChildApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        PlaylistChildApi apiInstance = new PlaylistChildApi();
        Integer customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
        Integer playlistId = 56; // Integer | ID de modelo 'Playlist' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
        PlaylistPut body = ; // PlaylistPut | 
        try {
            PlaylistPut result = apiInstance.playlistUpdateChild(customerId, playlistId, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling PlaylistChildApi#playlistUpdateChild");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.PlaylistChildApi;

public class PlaylistChildApiExample {

    public static void main(String[] args) {
        PlaylistChildApi apiInstance = new PlaylistChildApi();
        Integer customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
        Integer playlistId = 56; // Integer | ID de modelo 'Playlist' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
        PlaylistPut body = ; // PlaylistPut | 
        try {
            PlaylistPut result = apiInstance.playlistUpdateChild(customerId, playlistId, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling PlaylistChildApi#playlistUpdateChild");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *customerId = 56; // ID de customer relacionado con el usuario que realiza la petición.
Integer *playlistId = 56; // ID de modelo 'Playlist' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
PlaylistPut *body = ; //  (optional)

PlaylistChildApi *apiInstance = [[PlaylistChildApi alloc] init];

[apiInstance playlistUpdateChildWith:customerId
    playlistId:playlistId
    body:body
              completionHandler: ^(PlaylistPut output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.PlaylistChildApi()
var customerId = 56; // {{Integer}} ID de customer relacionado con el usuario que realiza la petición.
var playlistId = 56; // {{Integer}} ID de modelo 'Playlist' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
var opts = { 
  'body':  // {{PlaylistPut}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.playlistUpdateChild(customerIdplaylistId, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class playlistUpdateChildExample
    {
        public void main()
        {


            var apiInstance = new PlaylistChildApi();
            var customerId = 56;  // Integer | ID de customer relacionado con el usuario que realiza la petición.
            var playlistId = 56;  // Integer | ID de modelo 'Playlist' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
            var body = new PlaylistPut(); // PlaylistPut |  (optional) 

            try
            {
                PlaylistPut result = apiInstance.playlistUpdateChild(customerId, playlistId, body);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling PlaylistChildApi.playlistUpdateChild: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiPlaylistChildApi();
$customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
$playlistId = 56; // Integer | ID de modelo 'Playlist' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
$body = ; // PlaylistPut | 

try {
    $result = $api_instance->playlistUpdateChild($customerId, $playlistId, $body);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling PlaylistChildApi->playlistUpdateChild: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::PlaylistChildApi;


my $api_instance = WWW::SwaggerClient::PlaylistChildApi->new();
my $customerId = 56; # Integer | ID de customer relacionado con el usuario que realiza la petición.
my $playlistId = 56; # Integer | ID de modelo 'Playlist' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
my $body = WWW::SwaggerClient::Object::PlaylistPut->new(); # PlaylistPut | 

eval { 
    my $result = $api_instance->playlistUpdateChild(customerId => $customerId, playlistId => $playlistId, body => $body);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling PlaylistChildApi->playlistUpdateChild: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.PlaylistChildApi()
customerId = 56 # Integer | ID de customer relacionado con el usuario que realiza la petición.
playlistId = 56 # Integer | ID de modelo 'Playlist' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
body =  # PlaylistPut |  (optional)

try: 
    api_response = api_instance.playlist_update_child(customerId, playlistId, body=body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling PlaylistChildApi->playlistUpdateChild: %s\n" % e)

Parameters

Path parameters
Name Description
customerId*
Integer
ID de customer relacionado con el usuario que realiza la petición.
Required
playlistId*
Integer
ID de modelo 'Playlist' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
Required
Body parameters
Name Description
body

Responses

Status: 200 - Respuesta de modelo 'PlaylistGet'

Status: 400 - Los parametros incompatibles

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


Register

postRegisterCustomer

Crear un nuevo modelo 'Customer' para usuario que realiza la petición. Solo se permite esta acción a usuario que con tenga ningún customer relacionado.


/customer/register

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
-H "Content-Type: application/json"\
"https://{env}.nsign.tv/customer/register"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.RegisterApi;

import java.io.File;
import java.util.*;

public class RegisterApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        RegisterApi apiInstance = new RegisterApi();
        CustomerPost body = ; // CustomerPost | 
        try {
            CustomerGet result = apiInstance.postRegisterCustomer(body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling RegisterApi#postRegisterCustomer");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.RegisterApi;

public class RegisterApiExample {

    public static void main(String[] args) {
        RegisterApi apiInstance = new RegisterApi();
        CustomerPost body = ; // CustomerPost | 
        try {
            CustomerGet result = apiInstance.postRegisterCustomer(body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling RegisterApi#postRegisterCustomer");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
CustomerPost *body = ; //  (optional)

RegisterApi *apiInstance = [[RegisterApi alloc] init];

[apiInstance postRegisterCustomerWith:body
              completionHandler: ^(CustomerGet output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.RegisterApi()
var opts = { 
  'body':  // {{CustomerPost}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.postRegisterCustomer(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class postRegisterCustomerExample
    {
        public void main()
        {


            var apiInstance = new RegisterApi();
            var body = new CustomerPost(); // CustomerPost |  (optional) 

            try
            {
                CustomerGet result = apiInstance.postRegisterCustomer(body);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling RegisterApi.postRegisterCustomer: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiRegisterApi();
$body = ; // CustomerPost | 

try {
    $result = $api_instance->postRegisterCustomer($body);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling RegisterApi->postRegisterCustomer: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::RegisterApi;


my $api_instance = WWW::SwaggerClient::RegisterApi->new();
my $body = WWW::SwaggerClient::Object::CustomerPost->new(); # CustomerPost | 

eval { 
    my $result = $api_instance->postRegisterCustomer(body => $body);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling RegisterApi->postRegisterCustomer: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.RegisterApi()
body =  # CustomerPost |  (optional)

try: 
    api_response = api_instance.post_register_customer(body=body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling RegisterApi->postRegisterCustomer: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - La información de customer. Modelo 'CustomerGet'

Status: 400 - Los parametros incompatibles

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.


userRegister

Crear un nuevo modelo 'User' sin relación con customer


/user/register

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
-H "Content-Type: application/json"\
"https://{env}.nsign.tv/user/register"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.RegisterApi;

import java.io.File;
import java.util.*;

public class RegisterApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        RegisterApi apiInstance = new RegisterApi();
        UserPost body = ; // UserPost | 
        try {
            UserGet result = apiInstance.userRegister(body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling RegisterApi#userRegister");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.RegisterApi;

public class RegisterApiExample {

    public static void main(String[] args) {
        RegisterApi apiInstance = new RegisterApi();
        UserPost body = ; // UserPost | 
        try {
            UserGet result = apiInstance.userRegister(body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling RegisterApi#userRegister");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
UserPost *body = ; //  (optional)

RegisterApi *apiInstance = [[RegisterApi alloc] init];

[apiInstance userRegisterWith:body
              completionHandler: ^(UserGet output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.RegisterApi()
var opts = { 
  'body':  // {{UserPost}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.userRegister(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class userRegisterExample
    {
        public void main()
        {


            var apiInstance = new RegisterApi();
            var body = new UserPost(); // UserPost |  (optional) 

            try
            {
                UserGet result = apiInstance.userRegister(body);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling RegisterApi.userRegister: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiRegisterApi();
$body = ; // UserPost | 

try {
    $result = $api_instance->userRegister($body);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling RegisterApi->userRegister: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::RegisterApi;


my $api_instance = WWW::SwaggerClient::RegisterApi->new();
my $body = WWW::SwaggerClient::Object::UserPost->new(); # UserPost | 

eval { 
    my $result = $api_instance->userRegister(body => $body);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling RegisterApi->userRegister: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.RegisterApi()
body =  # UserPost |  (optional)

try: 
    api_response = api_instance.user_register(body=body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling RegisterApi->userRegister: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - Respuesta de modelo 'UserGet'

Status: 400 - Los parametros incompatibles


Resource

resourceDelete

Eliminar el modelo 'Resource' relacionado con el usuario que realiza la petición.


/resource/{resourceId}

Usage and SDK Samples

curl -X DELETE\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/resource/{resourceId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ResourceApi;

import java.io.File;
import java.util.*;

public class ResourceApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ResourceApi apiInstance = new ResourceApi();
        Integer resourceId = 56; // Integer | ID de modelo 'Resource' relacionado con el usuario que realiza la petición.
        try {
            apiInstance.resourceDelete(resourceId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ResourceApi#resourceDelete");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ResourceApi;

public class ResourceApiExample {

    public static void main(String[] args) {
        ResourceApi apiInstance = new ResourceApi();
        Integer resourceId = 56; // Integer | ID de modelo 'Resource' relacionado con el usuario que realiza la petición.
        try {
            apiInstance.resourceDelete(resourceId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ResourceApi#resourceDelete");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *resourceId = 56; // ID de modelo 'Resource' relacionado con el usuario que realiza la petición.

ResourceApi *apiInstance = [[ResourceApi alloc] init];

[apiInstance resourceDeleteWith:resourceId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.ResourceApi()
var resourceId = 56; // {{Integer}} ID de modelo 'Resource' relacionado con el usuario que realiza la petición.

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.resourceDelete(resourceId, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class resourceDeleteExample
    {
        public void main()
        {


            var apiInstance = new ResourceApi();
            var resourceId = 56;  // Integer | ID de modelo 'Resource' relacionado con el usuario que realiza la petición.

            try
            {
                apiInstance.resourceDelete(resourceId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ResourceApi.resourceDelete: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiResourceApi();
$resourceId = 56; // Integer | ID de modelo 'Resource' relacionado con el usuario que realiza la petición.

try {
    $api_instance->resourceDelete($resourceId);
} catch (Exception $e) {
    echo 'Exception when calling ResourceApi->resourceDelete: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ResourceApi;


my $api_instance = WWW::SwaggerClient::ResourceApi->new();
my $resourceId = 56; # Integer | ID de modelo 'Resource' relacionado con el usuario que realiza la petición.

eval { 
    $api_instance->resourceDelete(resourceId => $resourceId);
};
if ($@) {
    warn "Exception when calling ResourceApi->resourceDelete: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ResourceApi()
resourceId = 56 # Integer | ID de modelo 'Resource' relacionado con el usuario que realiza la petición.

try: 
    api_instance.resource_delete(resourceId)
except ApiException as e:
    print("Exception when calling ResourceApi->resourceDelete: %s\n" % e)

Parameters

Path parameters
Name Description
resourceId*
Integer
ID de modelo 'Resource' relacionado con el usuario que realiza la petición.
Required

Responses

Status: 200 - Confirmación de acción.

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


resourceGet

Información completa de modelo 'ResourceGet' que corresponde a parametro 'inPath' {resourceId}.


/resource/{resourceId}

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/resource/{resourceId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ResourceApi;

import java.io.File;
import java.util.*;

public class ResourceApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ResourceApi apiInstance = new ResourceApi();
        Integer resourceId = 56; // Integer | ID de modelo 'Resource' relacionado con el usuario que realiza la petición.
        try {
            ResourceGet result = apiInstance.resourceGet(resourceId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ResourceApi#resourceGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ResourceApi;

public class ResourceApiExample {

    public static void main(String[] args) {
        ResourceApi apiInstance = new ResourceApi();
        Integer resourceId = 56; // Integer | ID de modelo 'Resource' relacionado con el usuario que realiza la petición.
        try {
            ResourceGet result = apiInstance.resourceGet(resourceId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ResourceApi#resourceGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *resourceId = 56; // ID de modelo 'Resource' relacionado con el usuario que realiza la petición.

ResourceApi *apiInstance = [[ResourceApi alloc] init];

[apiInstance resourceGetWith:resourceId
              completionHandler: ^(ResourceGet output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.ResourceApi()
var resourceId = 56; // {{Integer}} ID de modelo 'Resource' relacionado con el usuario que realiza la petición.

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.resourceGet(resourceId, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class resourceGetExample
    {
        public void main()
        {


            var apiInstance = new ResourceApi();
            var resourceId = 56;  // Integer | ID de modelo 'Resource' relacionado con el usuario que realiza la petición.

            try
            {
                ResourceGet result = apiInstance.resourceGet(resourceId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ResourceApi.resourceGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiResourceApi();
$resourceId = 56; // Integer | ID de modelo 'Resource' relacionado con el usuario que realiza la petición.

try {
    $result = $api_instance->resourceGet($resourceId);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ResourceApi->resourceGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ResourceApi;


my $api_instance = WWW::SwaggerClient::ResourceApi->new();
my $resourceId = 56; # Integer | ID de modelo 'Resource' relacionado con el usuario que realiza la petición.

eval { 
    my $result = $api_instance->resourceGet(resourceId => $resourceId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ResourceApi->resourceGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ResourceApi()
resourceId = 56 # Integer | ID de modelo 'Resource' relacionado con el usuario que realiza la petición.

try: 
    api_response = api_instance.resource_get(resourceId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ResourceApi->resourceGet: %s\n" % e)

Parameters

Path parameters
Name Description
resourceId*
Integer
ID de modelo 'Resource' relacionado con el usuario que realiza la petición.
Required

Responses

Status: 200 - Respuesta de modelo 'ResourceGet'.

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


resourceGet_1

Información completa de modelo 'ResourceGet' que corresponde a parametro 'inPath' {resourceId}. Acceso con apiKey


/stateless/resource/{resourceId}

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/stateless/resource/{resourceId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ResourceApi;

import java.io.File;
import java.util.*;

public class ResourceApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ResourceApi apiInstance = new ResourceApi();
        Integer resourceId = 56; // Integer | ID de modelo 'Resource' relacionado con el usuario que realiza la petición.
        try {
            ResourceGet result = apiInstance.resourceGet_0(resourceId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ResourceApi#resourceGet_0");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ResourceApi;

public class ResourceApiExample {

    public static void main(String[] args) {
        ResourceApi apiInstance = new ResourceApi();
        Integer resourceId = 56; // Integer | ID de modelo 'Resource' relacionado con el usuario que realiza la petición.
        try {
            ResourceGet result = apiInstance.resourceGet_0(resourceId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ResourceApi#resourceGet_0");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *resourceId = 56; // ID de modelo 'Resource' relacionado con el usuario que realiza la petición.

ResourceApi *apiInstance = [[ResourceApi alloc] init];

[apiInstance resourceGet_1With:resourceId
              completionHandler: ^(ResourceGet output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.ResourceApi()
var resourceId = 56; // {{Integer}} ID de modelo 'Resource' relacionado con el usuario que realiza la petición.

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.resourceGet_0(resourceId, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class resourceGet_0Example
    {
        public void main()
        {


            var apiInstance = new ResourceApi();
            var resourceId = 56;  // Integer | ID de modelo 'Resource' relacionado con el usuario que realiza la petición.

            try
            {
                ResourceGet result = apiInstance.resourceGet_0(resourceId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ResourceApi.resourceGet_0: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiResourceApi();
$resourceId = 56; // Integer | ID de modelo 'Resource' relacionado con el usuario que realiza la petición.

try {
    $result = $api_instance->resourceGet_0($resourceId);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ResourceApi->resourceGet_0: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ResourceApi;


my $api_instance = WWW::SwaggerClient::ResourceApi->new();
my $resourceId = 56; # Integer | ID de modelo 'Resource' relacionado con el usuario que realiza la petición.

eval { 
    my $result = $api_instance->resourceGet_0(resourceId => $resourceId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ResourceApi->resourceGet_0: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ResourceApi()
resourceId = 56 # Integer | ID de modelo 'Resource' relacionado con el usuario que realiza la petición.

try: 
    api_response = api_instance.resource_get_0(resourceId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ResourceApi->resourceGet_0: %s\n" % e)

Parameters

Path parameters
Name Description
resourceId*
Integer
ID de modelo 'Resource' relacionado con el usuario que realiza la petición.
Required

Responses

Status: 200 - Respuesta de modelo 'ResourceGet'.

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


resourceList

Listado de modelos 'ResourceNormalizer' relacionados con el usuario que realiza la petición.


/resources

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/resources"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ResourceApi;

import java.io.File;
import java.util.*;

public class ResourceApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ResourceApi apiInstance = new ResourceApi();
        try {
            array[ResourceNormalizer] result = apiInstance.resourceList();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ResourceApi#resourceList");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ResourceApi;

public class ResourceApiExample {

    public static void main(String[] args) {
        ResourceApi apiInstance = new ResourceApi();
        try {
            array[ResourceNormalizer] result = apiInstance.resourceList();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ResourceApi#resourceList");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];

ResourceApi *apiInstance = [[ResourceApi alloc] init];

[apiInstance resourceListWithCompletionHandler: 
              ^(array[ResourceNormalizer] output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.ResourceApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.resourceList(callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class resourceListExample
    {
        public void main()
        {


            var apiInstance = new ResourceApi();

            try
            {
                array[ResourceNormalizer] result = apiInstance.resourceList();
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ResourceApi.resourceList: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiResourceApi();

try {
    $result = $api_instance->resourceList();
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ResourceApi->resourceList: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ResourceApi;


my $api_instance = WWW::SwaggerClient::ResourceApi->new();

eval { 
    my $result = $api_instance->resourceList();
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ResourceApi->resourceList: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ResourceApi()

try: 
    api_response = api_instance.resource_list()
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ResourceApi->resourceList: %s\n" % e)

Parameters

Responses

Status: 200 - Respuesta de listado de modelos 'ResourceNormalizer'.

Status: 401 - El token no es válido


resourceList_2

Listado de modelos 'ResourceNormalizer' relacionados con el usuario que realiza la petición. Acceso con apiKey


/stateless/resources

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/stateless/resources"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ResourceApi;

import java.io.File;
import java.util.*;

public class ResourceApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ResourceApi apiInstance = new ResourceApi();
        try {
            array[ResourceNormalizer] result = apiInstance.resourceList_0();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ResourceApi#resourceList_0");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ResourceApi;

public class ResourceApiExample {

    public static void main(String[] args) {
        ResourceApi apiInstance = new ResourceApi();
        try {
            array[ResourceNormalizer] result = apiInstance.resourceList_0();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ResourceApi#resourceList_0");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];

ResourceApi *apiInstance = [[ResourceApi alloc] init];

[apiInstance resourceList_2WithCompletionHandler: 
              ^(array[ResourceNormalizer] output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.ResourceApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.resourceList_0(callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class resourceList_0Example
    {
        public void main()
        {


            var apiInstance = new ResourceApi();

            try
            {
                array[ResourceNormalizer] result = apiInstance.resourceList_0();
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ResourceApi.resourceList_0: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiResourceApi();

try {
    $result = $api_instance->resourceList_0();
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ResourceApi->resourceList_0: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ResourceApi;


my $api_instance = WWW::SwaggerClient::ResourceApi->new();

eval { 
    my $result = $api_instance->resourceList_0();
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ResourceApi->resourceList_0: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ResourceApi()

try: 
    api_response = api_instance.resource_list_0()
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ResourceApi->resourceList_0: %s\n" % e)

Parameters

Responses

Status: 200 - Respuesta de listado de modelos 'ResourceNormalizer'.

Status: 401 - El token no es válido


resourcePlayerList

Listado de modelos 'ResourceNormalizer' asignados al player.


/stateless/resources/player/{playerId}

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/stateless/resources/player/{playerId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ResourceApi;

import java.io.File;
import java.util.*;

public class ResourceApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ResourceApi apiInstance = new ResourceApi();
        Integer playerId = 56; // Integer | ID de modelo 'Player'
        try {
            array[ResourceNormalizer] result = apiInstance.resourcePlayerList(playerId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ResourceApi#resourcePlayerList");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ResourceApi;

public class ResourceApiExample {

    public static void main(String[] args) {
        ResourceApi apiInstance = new ResourceApi();
        Integer playerId = 56; // Integer | ID de modelo 'Player'
        try {
            array[ResourceNormalizer] result = apiInstance.resourcePlayerList(playerId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ResourceApi#resourcePlayerList");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *playerId = 56; // ID de modelo 'Player'

ResourceApi *apiInstance = [[ResourceApi alloc] init];

[apiInstance resourcePlayerListWith:playerId
              completionHandler: ^(array[ResourceNormalizer] output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.ResourceApi()
var playerId = 56; // {{Integer}} ID de modelo 'Player'

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.resourcePlayerList(playerId, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class resourcePlayerListExample
    {
        public void main()
        {


            var apiInstance = new ResourceApi();
            var playerId = 56;  // Integer | ID de modelo 'Player'

            try
            {
                array[ResourceNormalizer] result = apiInstance.resourcePlayerList(playerId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ResourceApi.resourcePlayerList: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiResourceApi();
$playerId = 56; // Integer | ID de modelo 'Player'

try {
    $result = $api_instance->resourcePlayerList($playerId);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ResourceApi->resourcePlayerList: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ResourceApi;


my $api_instance = WWW::SwaggerClient::ResourceApi->new();
my $playerId = 56; # Integer | ID de modelo 'Player'

eval { 
    my $result = $api_instance->resourcePlayerList(playerId => $playerId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ResourceApi->resourcePlayerList: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ResourceApi()
playerId = 56 # Integer | ID de modelo 'Player'

try: 
    api_response = api_instance.resource_player_list(playerId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ResourceApi->resourcePlayerList: %s\n" % e)

Parameters

Path parameters
Name Description
playerId*
Integer
ID de modelo 'Player'
Required

Responses

Status: 200 - Respuesta de listado de modelos 'ResourceNormalizer'.

Status: 401 - El token no es válido


resourcePlayerListChild

Listado de modelos 'ResourceNormalizer' asignados al player relacionados con customer que corresponde a parametro 'inPath' {customerId}.


/stateless/resources/customer/{customerId}/player/{playerId}

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/stateless/resources/customer/{customerId}/player/{playerId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ResourceApi;

import java.io.File;
import java.util.*;

public class ResourceApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ResourceApi apiInstance = new ResourceApi();
        Integer customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
        Integer playerId = 56; // Integer | ID de modelo 'Player'
        try {
            array[ResourceNormalizer] result = apiInstance.resourcePlayerListChild(customerId, playerId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ResourceApi#resourcePlayerListChild");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ResourceApi;

public class ResourceApiExample {

    public static void main(String[] args) {
        ResourceApi apiInstance = new ResourceApi();
        Integer customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
        Integer playerId = 56; // Integer | ID de modelo 'Player'
        try {
            array[ResourceNormalizer] result = apiInstance.resourcePlayerListChild(customerId, playerId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ResourceApi#resourcePlayerListChild");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *customerId = 56; // ID de customer relacionado con el usuario que realiza la petición.
Integer *playerId = 56; // ID de modelo 'Player'

ResourceApi *apiInstance = [[ResourceApi alloc] init];

[apiInstance resourcePlayerListChildWith:customerId
    playerId:playerId
              completionHandler: ^(array[ResourceNormalizer] output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.ResourceApi()
var customerId = 56; // {{Integer}} ID de customer relacionado con el usuario que realiza la petición.
var playerId = 56; // {{Integer}} ID de modelo 'Player'

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.resourcePlayerListChild(customerId, playerId, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class resourcePlayerListChildExample
    {
        public void main()
        {


            var apiInstance = new ResourceApi();
            var customerId = 56;  // Integer | ID de customer relacionado con el usuario que realiza la petición.
            var playerId = 56;  // Integer | ID de modelo 'Player'

            try
            {
                array[ResourceNormalizer] result = apiInstance.resourcePlayerListChild(customerId, playerId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ResourceApi.resourcePlayerListChild: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiResourceApi();
$customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
$playerId = 56; // Integer | ID de modelo 'Player'

try {
    $result = $api_instance->resourcePlayerListChild($customerId, $playerId);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ResourceApi->resourcePlayerListChild: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ResourceApi;


my $api_instance = WWW::SwaggerClient::ResourceApi->new();
my $customerId = 56; # Integer | ID de customer relacionado con el usuario que realiza la petición.
my $playerId = 56; # Integer | ID de modelo 'Player'

eval { 
    my $result = $api_instance->resourcePlayerListChild(customerId => $customerId, playerId => $playerId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ResourceApi->resourcePlayerListChild: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ResourceApi()
customerId = 56 # Integer | ID de customer relacionado con el usuario que realiza la petición.
playerId = 56 # Integer | ID de modelo 'Player'

try: 
    api_response = api_instance.resource_player_list_child(customerId, playerId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ResourceApi->resourcePlayerListChild: %s\n" % e)

Parameters

Path parameters
Name Description
customerId*
Integer
ID de customer relacionado con el usuario que realiza la petición.
Required
playerId*
Integer
ID de modelo 'Player'
Required

Responses

Status: 200 - Respuesta de listado de modelos 'ResourceNormalizer'.

Status: 401 - El token no es válido


resourceUpdate

Editar el modelo 'Resource' relacionado con el usuario que realiza la petición.


/resource/{resourceId}

Usage and SDK Samples

curl -X PUT\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
-H "Content-Type: application/json"\
"https://{env}.nsign.tv/resource/{resourceId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ResourceApi;

import java.io.File;
import java.util.*;

public class ResourceApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ResourceApi apiInstance = new ResourceApi();
        Integer resourceId = 56; // Integer | ID de modelo 'Resource' relacionado con el usuario que realiza la petición.
        Resource body = ; // Resource | 
        try {
            ResourceGet result = apiInstance.resourceUpdate(resourceId, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ResourceApi#resourceUpdate");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ResourceApi;

public class ResourceApiExample {

    public static void main(String[] args) {
        ResourceApi apiInstance = new ResourceApi();
        Integer resourceId = 56; // Integer | ID de modelo 'Resource' relacionado con el usuario que realiza la petición.
        Resource body = ; // Resource | 
        try {
            ResourceGet result = apiInstance.resourceUpdate(resourceId, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ResourceApi#resourceUpdate");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *resourceId = 56; // ID de modelo 'Resource' relacionado con el usuario que realiza la petición.
Resource *body = ; //  (optional)

ResourceApi *apiInstance = [[ResourceApi alloc] init];

[apiInstance resourceUpdateWith:resourceId
    body:body
              completionHandler: ^(ResourceGet output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.ResourceApi()
var resourceId = 56; // {{Integer}} ID de modelo 'Resource' relacionado con el usuario que realiza la petición.
var opts = { 
  'body':  // {{Resource}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.resourceUpdate(resourceId, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class resourceUpdateExample
    {
        public void main()
        {


            var apiInstance = new ResourceApi();
            var resourceId = 56;  // Integer | ID de modelo 'Resource' relacionado con el usuario que realiza la petición.
            var body = new Resource(); // Resource |  (optional) 

            try
            {
                ResourceGet result = apiInstance.resourceUpdate(resourceId, body);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ResourceApi.resourceUpdate: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiResourceApi();
$resourceId = 56; // Integer | ID de modelo 'Resource' relacionado con el usuario que realiza la petición.
$body = ; // Resource | 

try {
    $result = $api_instance->resourceUpdate($resourceId, $body);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ResourceApi->resourceUpdate: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ResourceApi;


my $api_instance = WWW::SwaggerClient::ResourceApi->new();
my $resourceId = 56; # Integer | ID de modelo 'Resource' relacionado con el usuario que realiza la petición.
my $body = WWW::SwaggerClient::Object::Resource->new(); # Resource | 

eval { 
    my $result = $api_instance->resourceUpdate(resourceId => $resourceId, body => $body);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ResourceApi->resourceUpdate: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ResourceApi()
resourceId = 56 # Integer | ID de modelo 'Resource' relacionado con el usuario que realiza la petición.
body =  # Resource |  (optional)

try: 
    api_response = api_instance.resource_update(resourceId, body=body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ResourceApi->resourceUpdate: %s\n" % e)

Parameters

Path parameters
Name Description
resourceId*
Integer
ID de modelo 'Resource' relacionado con el usuario que realiza la petición.
Required
Body parameters
Name Description
body

Responses

Status: 200 - Respuesta de modelo 'ResourceGet'.

Status: 400 - Los parametros incompatibles

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


resourceUpdateListWithApiKey

Editar lista de modelos 'Resource' relacionado con el usuario que realiza la petición.


/stateless/resources

Usage and SDK Samples

curl -X PUT\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
-H "Content-Type: application/json"\
"https://{env}.nsign.tv/stateless/resources"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ResourceApi;

import java.io.File;
import java.util.*;

public class ResourceApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ResourceApi apiInstance = new ResourceApi();
        Resource body = ; // Resource | 
        try {
            ResourceGet result = apiInstance.resourceUpdateListWithApiKey(body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ResourceApi#resourceUpdateListWithApiKey");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ResourceApi;

public class ResourceApiExample {

    public static void main(String[] args) {
        ResourceApi apiInstance = new ResourceApi();
        Resource body = ; // Resource | 
        try {
            ResourceGet result = apiInstance.resourceUpdateListWithApiKey(body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ResourceApi#resourceUpdateListWithApiKey");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Resource *body = ; //  (optional)

ResourceApi *apiInstance = [[ResourceApi alloc] init];

[apiInstance resourceUpdateListWithApiKeyWith:body
              completionHandler: ^(ResourceGet output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.ResourceApi()
var opts = { 
  'body':  // {{Resource}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.resourceUpdateListWithApiKey(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class resourceUpdateListWithApiKeyExample
    {
        public void main()
        {


            var apiInstance = new ResourceApi();
            var body = new Resource(); // Resource |  (optional) 

            try
            {
                ResourceGet result = apiInstance.resourceUpdateListWithApiKey(body);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ResourceApi.resourceUpdateListWithApiKey: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiResourceApi();
$body = ; // Resource | 

try {
    $result = $api_instance->resourceUpdateListWithApiKey($body);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ResourceApi->resourceUpdateListWithApiKey: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ResourceApi;


my $api_instance = WWW::SwaggerClient::ResourceApi->new();
my $body = WWW::SwaggerClient::Object::Resource->new(); # Resource | 

eval { 
    my $result = $api_instance->resourceUpdateListWithApiKey(body => $body);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ResourceApi->resourceUpdateListWithApiKey: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ResourceApi()
body =  # Resource |  (optional)

try: 
    api_response = api_instance.resource_update_list_with_api_key(body=body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ResourceApi->resourceUpdateListWithApiKey: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - Respuesta de modelo 'ResourceGet'.

Status: 400 - Los parametros incompatibles

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


resourceUpdateWithApiKey

Editar el modelo 'Resource' relacionado con el usuario que realiza la petición.


/stateless/resource/{resourceId}

Usage and SDK Samples

curl -X PUT\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
-H "Content-Type: application/json"\
"https://{env}.nsign.tv/stateless/resource/{resourceId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ResourceApi;

import java.io.File;
import java.util.*;

public class ResourceApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ResourceApi apiInstance = new ResourceApi();
        Integer resourceId = 56; // Integer | ID de modelo 'Resource' relacionado con el usuario que realiza la petición.
        Resource body = ; // Resource | 
        try {
            ResourceGet result = apiInstance.resourceUpdateWithApiKey(resourceId, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ResourceApi#resourceUpdateWithApiKey");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ResourceApi;

public class ResourceApiExample {

    public static void main(String[] args) {
        ResourceApi apiInstance = new ResourceApi();
        Integer resourceId = 56; // Integer | ID de modelo 'Resource' relacionado con el usuario que realiza la petición.
        Resource body = ; // Resource | 
        try {
            ResourceGet result = apiInstance.resourceUpdateWithApiKey(resourceId, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ResourceApi#resourceUpdateWithApiKey");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *resourceId = 56; // ID de modelo 'Resource' relacionado con el usuario que realiza la petición.
Resource *body = ; //  (optional)

ResourceApi *apiInstance = [[ResourceApi alloc] init];

[apiInstance resourceUpdateWithApiKeyWith:resourceId
    body:body
              completionHandler: ^(ResourceGet output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.ResourceApi()
var resourceId = 56; // {{Integer}} ID de modelo 'Resource' relacionado con el usuario que realiza la petición.
var opts = { 
  'body':  // {{Resource}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.resourceUpdateWithApiKey(resourceId, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class resourceUpdateWithApiKeyExample
    {
        public void main()
        {


            var apiInstance = new ResourceApi();
            var resourceId = 56;  // Integer | ID de modelo 'Resource' relacionado con el usuario que realiza la petición.
            var body = new Resource(); // Resource |  (optional) 

            try
            {
                ResourceGet result = apiInstance.resourceUpdateWithApiKey(resourceId, body);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ResourceApi.resourceUpdateWithApiKey: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiResourceApi();
$resourceId = 56; // Integer | ID de modelo 'Resource' relacionado con el usuario que realiza la petición.
$body = ; // Resource | 

try {
    $result = $api_instance->resourceUpdateWithApiKey($resourceId, $body);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ResourceApi->resourceUpdateWithApiKey: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ResourceApi;


my $api_instance = WWW::SwaggerClient::ResourceApi->new();
my $resourceId = 56; # Integer | ID de modelo 'Resource' relacionado con el usuario que realiza la petición.
my $body = WWW::SwaggerClient::Object::Resource->new(); # Resource | 

eval { 
    my $result = $api_instance->resourceUpdateWithApiKey(resourceId => $resourceId, body => $body);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ResourceApi->resourceUpdateWithApiKey: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ResourceApi()
resourceId = 56 # Integer | ID de modelo 'Resource' relacionado con el usuario que realiza la petición.
body =  # Resource |  (optional)

try: 
    api_response = api_instance.resource_update_with_api_key(resourceId, body=body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ResourceApi->resourceUpdateWithApiKey: %s\n" % e)

Parameters

Path parameters
Name Description
resourceId*
Integer
ID de modelo 'Resource' relacionado con el usuario que realiza la petición.
Required
Body parameters
Name Description
body

Responses

Status: 200 - Respuesta de modelo 'ResourceGet'.

Status: 400 - Los parametros incompatibles

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


resourceUpload

Crear un nuevo archivo multimedia para customer relacionado con el usuario que realiza la petición. Formatos que se admite: application/zip, video/mpeg, video/ogg, video/x-msvideo, video/mp2t, video/webm, video/mp4, image/png, image/jpeg, image/webp


/resource/upload

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
-H "Content-Type: multipart/form-data"\
"https://{env}.nsign.tv/resource/upload"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ResourceApi;

import java.io.File;
import java.util.*;

public class ResourceApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ResourceApi apiInstance = new ResourceApi();
        image/video/zip file = ; // image/video/zip | 
        try {
            ResourceGet result = apiInstance.resourceUpload(file);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ResourceApi#resourceUpload");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ResourceApi;

public class ResourceApiExample {

    public static void main(String[] args) {
        ResourceApi apiInstance = new ResourceApi();
        image/video/zip file = ; // image/video/zip | 
        try {
            ResourceGet result = apiInstance.resourceUpload(file);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ResourceApi#resourceUpload");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
image/video/zip *file = ; //  (optional)

ResourceApi *apiInstance = [[ResourceApi alloc] init];

[apiInstance resourceUploadWith:file
              completionHandler: ^(ResourceGet output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.ResourceApi()
var opts = { 
  'file':  // {{image/video/zip}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.resourceUpload(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class resourceUploadExample
    {
        public void main()
        {


            var apiInstance = new ResourceApi();
            var file = new image/video/zip(); // image/video/zip |  (optional) 

            try
            {
                ResourceGet result = apiInstance.resourceUpload(file);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ResourceApi.resourceUpload: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiResourceApi();
$file = ; // image/video/zip | 

try {
    $result = $api_instance->resourceUpload($file);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ResourceApi->resourceUpload: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ResourceApi;


my $api_instance = WWW::SwaggerClient::ResourceApi->new();
my $file = ; # image/video/zip | 

eval { 
    my $result = $api_instance->resourceUpload(file => $file);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ResourceApi->resourceUpload: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ResourceApi()
file =  # image/video/zip |  (optional)

try: 
    api_response = api_instance.resource_upload(file=file)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ResourceApi->resourceUpload: %s\n" % e)

Parameters

Form parameters
Name Description
file
image/video/zip

Responses

Status: 200 - Respuesta de modelo 'ResourceGet'

Status: 400 - Los parametros incompatibles

Status: 401 - El token no es válido


resourceUploadUpdate

Actualizar archivo multimedia relacionado con el usuario que realiza la petición. Formatos que se admite: application/zip, video/mpeg, video/ogg, video/x-msvideo, video/mp2t, video/webm, video/mp4, image/png, image/jpeg, image/webp.


/resource/upload/{resourceId}

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
-H "Content-Type: multipart/form-data"\
"https://{env}.nsign.tv/resource/upload/{resourceId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ResourceApi;

import java.io.File;
import java.util.*;

public class ResourceApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ResourceApi apiInstance = new ResourceApi();
        Integer resourceId = 56; // Integer | ID de modelo 'Resource' relacionado con el usuario que realiza la petición.
        image/video/zip file = ; // image/video/zip | 
        try {
            ResourceGet result = apiInstance.resourceUploadUpdate(resourceId, file);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ResourceApi#resourceUploadUpdate");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ResourceApi;

public class ResourceApiExample {

    public static void main(String[] args) {
        ResourceApi apiInstance = new ResourceApi();
        Integer resourceId = 56; // Integer | ID de modelo 'Resource' relacionado con el usuario que realiza la petición.
        image/video/zip file = ; // image/video/zip | 
        try {
            ResourceGet result = apiInstance.resourceUploadUpdate(resourceId, file);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ResourceApi#resourceUploadUpdate");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *resourceId = 56; // ID de modelo 'Resource' relacionado con el usuario que realiza la petición.
image/video/zip *file = ; //  (optional)

ResourceApi *apiInstance = [[ResourceApi alloc] init];

[apiInstance resourceUploadUpdateWith:resourceId
    file:file
              completionHandler: ^(ResourceGet output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.ResourceApi()
var resourceId = 56; // {{Integer}} ID de modelo 'Resource' relacionado con el usuario que realiza la petición.
var opts = { 
  'file':  // {{image/video/zip}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.resourceUploadUpdate(resourceId, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class resourceUploadUpdateExample
    {
        public void main()
        {


            var apiInstance = new ResourceApi();
            var resourceId = 56;  // Integer | ID de modelo 'Resource' relacionado con el usuario que realiza la petición.
            var file = new image/video/zip(); // image/video/zip |  (optional) 

            try
            {
                ResourceGet result = apiInstance.resourceUploadUpdate(resourceId, file);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ResourceApi.resourceUploadUpdate: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiResourceApi();
$resourceId = 56; // Integer | ID de modelo 'Resource' relacionado con el usuario que realiza la petición.
$file = ; // image/video/zip | 

try {
    $result = $api_instance->resourceUploadUpdate($resourceId, $file);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ResourceApi->resourceUploadUpdate: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ResourceApi;


my $api_instance = WWW::SwaggerClient::ResourceApi->new();
my $resourceId = 56; # Integer | ID de modelo 'Resource' relacionado con el usuario que realiza la petición.
my $file = ; # image/video/zip | 

eval { 
    my $result = $api_instance->resourceUploadUpdate(resourceId => $resourceId, file => $file);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ResourceApi->resourceUploadUpdate: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ResourceApi()
resourceId = 56 # Integer | ID de modelo 'Resource' relacionado con el usuario que realiza la petición.
file =  # image/video/zip |  (optional)

try: 
    api_response = api_instance.resource_upload_update(resourceId, file=file)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ResourceApi->resourceUploadUpdate: %s\n" % e)

Parameters

Path parameters
Name Description
resourceId*
Integer
ID de modelo 'Resource' relacionado con el usuario que realiza la petición.
Required
Form parameters
Name Description
file
image/video/zip

Responses

Status: 200 - Respuesta de modelo 'ResourceGet'

Status: 400 - Los parametros incompatibles

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


ResourceChild

resourceDeleteChild

Eliminar el modelo 'Resource' relacionado con customer que corresponde a parametro 'inPath' {customerId}.


/resource/customer/{customerId}/{resourceId}

Usage and SDK Samples

curl -X DELETE\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/resource/customer/{customerId}/{resourceId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ResourceChildApi;

import java.io.File;
import java.util.*;

public class ResourceChildApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ResourceChildApi apiInstance = new ResourceChildApi();
        Integer resourceId = 56; // Integer | ID de modelo 'Resource' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
        Integer customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
        try {
            apiInstance.resourceDeleteChild(resourceId, customerId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ResourceChildApi#resourceDeleteChild");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ResourceChildApi;

public class ResourceChildApiExample {

    public static void main(String[] args) {
        ResourceChildApi apiInstance = new ResourceChildApi();
        Integer resourceId = 56; // Integer | ID de modelo 'Resource' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
        Integer customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
        try {
            apiInstance.resourceDeleteChild(resourceId, customerId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ResourceChildApi#resourceDeleteChild");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *resourceId = 56; // ID de modelo 'Resource' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
Integer *customerId = 56; // ID de customer relacionado con el usuario que realiza la petición.

ResourceChildApi *apiInstance = [[ResourceChildApi alloc] init];

[apiInstance resourceDeleteChildWith:resourceId
    customerId:customerId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.ResourceChildApi()
var resourceId = 56; // {{Integer}} ID de modelo 'Resource' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
var customerId = 56; // {{Integer}} ID de customer relacionado con el usuario que realiza la petición.

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.resourceDeleteChild(resourceId, customerId, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class resourceDeleteChildExample
    {
        public void main()
        {


            var apiInstance = new ResourceChildApi();
            var resourceId = 56;  // Integer | ID de modelo 'Resource' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
            var customerId = 56;  // Integer | ID de customer relacionado con el usuario que realiza la petición.

            try
            {
                apiInstance.resourceDeleteChild(resourceId, customerId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ResourceChildApi.resourceDeleteChild: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiResourceChildApi();
$resourceId = 56; // Integer | ID de modelo 'Resource' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
$customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.

try {
    $api_instance->resourceDeleteChild($resourceId, $customerId);
} catch (Exception $e) {
    echo 'Exception when calling ResourceChildApi->resourceDeleteChild: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ResourceChildApi;


my $api_instance = WWW::SwaggerClient::ResourceChildApi->new();
my $resourceId = 56; # Integer | ID de modelo 'Resource' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
my $customerId = 56; # Integer | ID de customer relacionado con el usuario que realiza la petición.

eval { 
    $api_instance->resourceDeleteChild(resourceId => $resourceId, customerId => $customerId);
};
if ($@) {
    warn "Exception when calling ResourceChildApi->resourceDeleteChild: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ResourceChildApi()
resourceId = 56 # Integer | ID de modelo 'Resource' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
customerId = 56 # Integer | ID de customer relacionado con el usuario que realiza la petición.

try: 
    api_instance.resource_delete_child(resourceId, customerId)
except ApiException as e:
    print("Exception when calling ResourceChildApi->resourceDeleteChild: %s\n" % e)

Parameters

Path parameters
Name Description
resourceId*
Integer
ID de modelo 'Resource' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
Required
customerId*
Integer
ID de customer relacionado con el usuario que realiza la petición.
Required

Responses

Status: 200 - Confirmación de acción.

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


resourceGetChild

Información completa de un contenido multimedia relacionada con el modelo que corresponde a parametro 'inPath' {resourceId}.


/resource/customer/{customerId}/{resourceId}

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/resource/customer/{customerId}/{resourceId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ResourceChildApi;

import java.io.File;
import java.util.*;

public class ResourceChildApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ResourceChildApi apiInstance = new ResourceChildApi();
        Integer customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
        Integer resourceId = 56; // Integer | ID de modelo 'Resource' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
        try {
            ResourceGet result = apiInstance.resourceGetChild(customerId, resourceId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ResourceChildApi#resourceGetChild");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ResourceChildApi;

public class ResourceChildApiExample {

    public static void main(String[] args) {
        ResourceChildApi apiInstance = new ResourceChildApi();
        Integer customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
        Integer resourceId = 56; // Integer | ID de modelo 'Resource' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
        try {
            ResourceGet result = apiInstance.resourceGetChild(customerId, resourceId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ResourceChildApi#resourceGetChild");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *customerId = 56; // ID de customer relacionado con el usuario que realiza la petición.
Integer *resourceId = 56; // ID de modelo 'Resource' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.

ResourceChildApi *apiInstance = [[ResourceChildApi alloc] init];

[apiInstance resourceGetChildWith:customerId
    resourceId:resourceId
              completionHandler: ^(ResourceGet output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.ResourceChildApi()
var customerId = 56; // {{Integer}} ID de customer relacionado con el usuario que realiza la petición.
var resourceId = 56; // {{Integer}} ID de modelo 'Resource' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.resourceGetChild(customerId, resourceId, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class resourceGetChildExample
    {
        public void main()
        {


            var apiInstance = new ResourceChildApi();
            var customerId = 56;  // Integer | ID de customer relacionado con el usuario que realiza la petición.
            var resourceId = 56;  // Integer | ID de modelo 'Resource' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.

            try
            {
                ResourceGet result = apiInstance.resourceGetChild(customerId, resourceId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ResourceChildApi.resourceGetChild: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiResourceChildApi();
$customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
$resourceId = 56; // Integer | ID de modelo 'Resource' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.

try {
    $result = $api_instance->resourceGetChild($customerId, $resourceId);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ResourceChildApi->resourceGetChild: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ResourceChildApi;


my $api_instance = WWW::SwaggerClient::ResourceChildApi->new();
my $customerId = 56; # Integer | ID de customer relacionado con el usuario que realiza la petición.
my $resourceId = 56; # Integer | ID de modelo 'Resource' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.

eval { 
    my $result = $api_instance->resourceGetChild(customerId => $customerId, resourceId => $resourceId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ResourceChildApi->resourceGetChild: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ResourceChildApi()
customerId = 56 # Integer | ID de customer relacionado con el usuario que realiza la petición.
resourceId = 56 # Integer | ID de modelo 'Resource' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.

try: 
    api_response = api_instance.resource_get_child(customerId, resourceId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ResourceChildApi->resourceGetChild: %s\n" % e)

Parameters

Path parameters
Name Description
customerId*
Integer
ID de customer relacionado con el usuario que realiza la petición.
Required
resourceId*
Integer
ID de modelo 'Resource' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
Required

Responses

Status: 200 - Respuesta de modelo 'ResourceGet'

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


resourceGetChild_1

Información completa de un contenido multimedia relacionada con el modelo que corresponde a parametro 'inPath' {resourceId}. Acceso con apiKey


/stateless/resource/customer/{customerId}/{resourceId}

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/stateless/resource/customer/{customerId}/{resourceId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ResourceChildApi;

import java.io.File;
import java.util.*;

public class ResourceChildApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ResourceChildApi apiInstance = new ResourceChildApi();
        Integer customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
        Integer resourceId = 56; // Integer | ID de modelo 'Resource' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
        try {
            ResourceGet result = apiInstance.resourceGetChild_0(customerId, resourceId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ResourceChildApi#resourceGetChild_0");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ResourceChildApi;

public class ResourceChildApiExample {

    public static void main(String[] args) {
        ResourceChildApi apiInstance = new ResourceChildApi();
        Integer customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
        Integer resourceId = 56; // Integer | ID de modelo 'Resource' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
        try {
            ResourceGet result = apiInstance.resourceGetChild_0(customerId, resourceId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ResourceChildApi#resourceGetChild_0");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *customerId = 56; // ID de customer relacionado con el usuario que realiza la petición.
Integer *resourceId = 56; // ID de modelo 'Resource' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.

ResourceChildApi *apiInstance = [[ResourceChildApi alloc] init];

[apiInstance resourceGetChild_1With:customerId
    resourceId:resourceId
              completionHandler: ^(ResourceGet output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.ResourceChildApi()
var customerId = 56; // {{Integer}} ID de customer relacionado con el usuario que realiza la petición.
var resourceId = 56; // {{Integer}} ID de modelo 'Resource' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.resourceGetChild_0(customerId, resourceId, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class resourceGetChild_0Example
    {
        public void main()
        {


            var apiInstance = new ResourceChildApi();
            var customerId = 56;  // Integer | ID de customer relacionado con el usuario que realiza la petición.
            var resourceId = 56;  // Integer | ID de modelo 'Resource' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.

            try
            {
                ResourceGet result = apiInstance.resourceGetChild_0(customerId, resourceId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ResourceChildApi.resourceGetChild_0: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiResourceChildApi();
$customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
$resourceId = 56; // Integer | ID de modelo 'Resource' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.

try {
    $result = $api_instance->resourceGetChild_0($customerId, $resourceId);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ResourceChildApi->resourceGetChild_0: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ResourceChildApi;


my $api_instance = WWW::SwaggerClient::ResourceChildApi->new();
my $customerId = 56; # Integer | ID de customer relacionado con el usuario que realiza la petición.
my $resourceId = 56; # Integer | ID de modelo 'Resource' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.

eval { 
    my $result = $api_instance->resourceGetChild_0(customerId => $customerId, resourceId => $resourceId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ResourceChildApi->resourceGetChild_0: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ResourceChildApi()
customerId = 56 # Integer | ID de customer relacionado con el usuario que realiza la petición.
resourceId = 56 # Integer | ID de modelo 'Resource' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.

try: 
    api_response = api_instance.resource_get_child_0(customerId, resourceId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ResourceChildApi->resourceGetChild_0: %s\n" % e)

Parameters

Path parameters
Name Description
customerId*
Integer
ID de customer relacionado con el usuario que realiza la petición.
Required
resourceId*
Integer
ID de modelo 'Resource' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
Required

Responses

Status: 200 - Respuesta de modelo 'ResourceGet'

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


resourceListChild

Listado de modelos 'ResourceNormalizer' relacionados con el customer que corresponde a parametro 'inPath' {customerId}


/resources/customer/{customerId}

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/resources/customer/{customerId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ResourceChildApi;

import java.io.File;
import java.util.*;

public class ResourceChildApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ResourceChildApi apiInstance = new ResourceChildApi();
        Integer customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
        try {
            array[ResourceNormalizer] result = apiInstance.resourceListChild(customerId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ResourceChildApi#resourceListChild");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ResourceChildApi;

public class ResourceChildApiExample {

    public static void main(String[] args) {
        ResourceChildApi apiInstance = new ResourceChildApi();
        Integer customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
        try {
            array[ResourceNormalizer] result = apiInstance.resourceListChild(customerId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ResourceChildApi#resourceListChild");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *customerId = 56; // ID de customer relacionado con el usuario que realiza la petición.

ResourceChildApi *apiInstance = [[ResourceChildApi alloc] init];

[apiInstance resourceListChildWith:customerId
              completionHandler: ^(array[ResourceNormalizer] output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.ResourceChildApi()
var customerId = 56; // {{Integer}} ID de customer relacionado con el usuario que realiza la petición.

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.resourceListChild(customerId, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class resourceListChildExample
    {
        public void main()
        {


            var apiInstance = new ResourceChildApi();
            var customerId = 56;  // Integer | ID de customer relacionado con el usuario que realiza la petición.

            try
            {
                array[ResourceNormalizer] result = apiInstance.resourceListChild(customerId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ResourceChildApi.resourceListChild: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiResourceChildApi();
$customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.

try {
    $result = $api_instance->resourceListChild($customerId);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ResourceChildApi->resourceListChild: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ResourceChildApi;


my $api_instance = WWW::SwaggerClient::ResourceChildApi->new();
my $customerId = 56; # Integer | ID de customer relacionado con el usuario que realiza la petición.

eval { 
    my $result = $api_instance->resourceListChild(customerId => $customerId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ResourceChildApi->resourceListChild: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ResourceChildApi()
customerId = 56 # Integer | ID de customer relacionado con el usuario que realiza la petición.

try: 
    api_response = api_instance.resource_list_child(customerId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ResourceChildApi->resourceListChild: %s\n" % e)

Parameters

Path parameters
Name Description
customerId*
Integer
ID de customer relacionado con el usuario que realiza la petición.
Required

Responses

Status: 200 - Respuesta de listado de modelos 'ResourceNormalizer'.

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


resourceListChild_2

Listado de modelos 'ResourceNormalizer' relacionados con el customer que corresponde a parametro 'inPath' {customerId}. Acceso con apiKey


/stateless/resources/customer/{customerId}

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/stateless/resources/customer/{customerId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ResourceChildApi;

import java.io.File;
import java.util.*;

public class ResourceChildApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ResourceChildApi apiInstance = new ResourceChildApi();
        Integer customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
        try {
            array[ResourceNormalizer] result = apiInstance.resourceListChild_0(customerId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ResourceChildApi#resourceListChild_0");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ResourceChildApi;

public class ResourceChildApiExample {

    public static void main(String[] args) {
        ResourceChildApi apiInstance = new ResourceChildApi();
        Integer customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
        try {
            array[ResourceNormalizer] result = apiInstance.resourceListChild_0(customerId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ResourceChildApi#resourceListChild_0");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *customerId = 56; // ID de customer relacionado con el usuario que realiza la petición.

ResourceChildApi *apiInstance = [[ResourceChildApi alloc] init];

[apiInstance resourceListChild_2With:customerId
              completionHandler: ^(array[ResourceNormalizer] output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.ResourceChildApi()
var customerId = 56; // {{Integer}} ID de customer relacionado con el usuario que realiza la petición.

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.resourceListChild_0(customerId, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class resourceListChild_0Example
    {
        public void main()
        {


            var apiInstance = new ResourceChildApi();
            var customerId = 56;  // Integer | ID de customer relacionado con el usuario que realiza la petición.

            try
            {
                array[ResourceNormalizer] result = apiInstance.resourceListChild_0(customerId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ResourceChildApi.resourceListChild_0: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiResourceChildApi();
$customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.

try {
    $result = $api_instance->resourceListChild_0($customerId);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ResourceChildApi->resourceListChild_0: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ResourceChildApi;


my $api_instance = WWW::SwaggerClient::ResourceChildApi->new();
my $customerId = 56; # Integer | ID de customer relacionado con el usuario que realiza la petición.

eval { 
    my $result = $api_instance->resourceListChild_0(customerId => $customerId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ResourceChildApi->resourceListChild_0: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ResourceChildApi()
customerId = 56 # Integer | ID de customer relacionado con el usuario que realiza la petición.

try: 
    api_response = api_instance.resource_list_child_0(customerId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ResourceChildApi->resourceListChild_0: %s\n" % e)

Parameters

Path parameters
Name Description
customerId*
Integer
ID de customer relacionado con el usuario que realiza la petición.
Required

Responses

Status: 200 - Respuesta de listado de modelos 'ResourceNormalizer'.

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


resourceUpdateChild

Editar el modelo 'Resource' relacionado con customer que corresponde a parametro 'inPath' {customerId}


/resource/customer/{customerId}/{resourceId}

Usage and SDK Samples

curl -X PUT\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
-H "Content-Type: application/json"\
"https://{env}.nsign.tv/resource/customer/{customerId}/{resourceId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ResourceChildApi;

import java.io.File;
import java.util.*;

public class ResourceChildApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ResourceChildApi apiInstance = new ResourceChildApi();
        Integer customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
        Integer resourceId = 56; // Integer | ID de modelo 'Resource' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
        Resource body = ; // Resource | 
        try {
            ResourceGet result = apiInstance.resourceUpdateChild(customerId, resourceId, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ResourceChildApi#resourceUpdateChild");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ResourceChildApi;

public class ResourceChildApiExample {

    public static void main(String[] args) {
        ResourceChildApi apiInstance = new ResourceChildApi();
        Integer customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
        Integer resourceId = 56; // Integer | ID de modelo 'Resource' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
        Resource body = ; // Resource | 
        try {
            ResourceGet result = apiInstance.resourceUpdateChild(customerId, resourceId, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ResourceChildApi#resourceUpdateChild");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *customerId = 56; // ID de customer relacionado con el usuario que realiza la petición.
Integer *resourceId = 56; // ID de modelo 'Resource' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
Resource *body = ; //  (optional)

ResourceChildApi *apiInstance = [[ResourceChildApi alloc] init];

[apiInstance resourceUpdateChildWith:customerId
    resourceId:resourceId
    body:body
              completionHandler: ^(ResourceGet output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.ResourceChildApi()
var customerId = 56; // {{Integer}} ID de customer relacionado con el usuario que realiza la petición.
var resourceId = 56; // {{Integer}} ID de modelo 'Resource' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
var opts = { 
  'body':  // {{Resource}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.resourceUpdateChild(customerIdresourceId, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class resourceUpdateChildExample
    {
        public void main()
        {


            var apiInstance = new ResourceChildApi();
            var customerId = 56;  // Integer | ID de customer relacionado con el usuario que realiza la petición.
            var resourceId = 56;  // Integer | ID de modelo 'Resource' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
            var body = new Resource(); // Resource |  (optional) 

            try
            {
                ResourceGet result = apiInstance.resourceUpdateChild(customerId, resourceId, body);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ResourceChildApi.resourceUpdateChild: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiResourceChildApi();
$customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
$resourceId = 56; // Integer | ID de modelo 'Resource' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
$body = ; // Resource | 

try {
    $result = $api_instance->resourceUpdateChild($customerId, $resourceId, $body);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ResourceChildApi->resourceUpdateChild: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ResourceChildApi;


my $api_instance = WWW::SwaggerClient::ResourceChildApi->new();
my $customerId = 56; # Integer | ID de customer relacionado con el usuario que realiza la petición.
my $resourceId = 56; # Integer | ID de modelo 'Resource' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
my $body = WWW::SwaggerClient::Object::Resource->new(); # Resource | 

eval { 
    my $result = $api_instance->resourceUpdateChild(customerId => $customerId, resourceId => $resourceId, body => $body);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ResourceChildApi->resourceUpdateChild: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ResourceChildApi()
customerId = 56 # Integer | ID de customer relacionado con el usuario que realiza la petición.
resourceId = 56 # Integer | ID de modelo 'Resource' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
body =  # Resource |  (optional)

try: 
    api_response = api_instance.resource_update_child(customerId, resourceId, body=body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ResourceChildApi->resourceUpdateChild: %s\n" % e)

Parameters

Path parameters
Name Description
customerId*
Integer
ID de customer relacionado con el usuario que realiza la petición.
Required
resourceId*
Integer
ID de modelo 'Resource' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
Required
Body parameters
Name Description
body

Responses

Status: 200 - Respuesta de modelo 'ResourceGet'

Status: 400 - Los parametros incompatibles

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


resourceUpdateChildApiKey

Editar el modelo 'Resource' relacionado con customer que corresponde a parametro 'inPath' {customerId}


/stateless/resource/customer/{customerId}/{resourceId}

Usage and SDK Samples

curl -X PUT\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
-H "Content-Type: application/json"\
"https://{env}.nsign.tv/stateless/resource/customer/{customerId}/{resourceId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ResourceChildApi;

import java.io.File;
import java.util.*;

public class ResourceChildApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ResourceChildApi apiInstance = new ResourceChildApi();
        Integer customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
        Integer resourceId = 56; // Integer | ID de modelo 'Resource' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
        Resource body = ; // Resource | 
        try {
            ResourceGet result = apiInstance.resourceUpdateChildApiKey(customerId, resourceId, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ResourceChildApi#resourceUpdateChildApiKey");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ResourceChildApi;

public class ResourceChildApiExample {

    public static void main(String[] args) {
        ResourceChildApi apiInstance = new ResourceChildApi();
        Integer customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
        Integer resourceId = 56; // Integer | ID de modelo 'Resource' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
        Resource body = ; // Resource | 
        try {
            ResourceGet result = apiInstance.resourceUpdateChildApiKey(customerId, resourceId, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ResourceChildApi#resourceUpdateChildApiKey");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *customerId = 56; // ID de customer relacionado con el usuario que realiza la petición.
Integer *resourceId = 56; // ID de modelo 'Resource' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
Resource *body = ; //  (optional)

ResourceChildApi *apiInstance = [[ResourceChildApi alloc] init];

[apiInstance resourceUpdateChildApiKeyWith:customerId
    resourceId:resourceId
    body:body
              completionHandler: ^(ResourceGet output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.ResourceChildApi()
var customerId = 56; // {{Integer}} ID de customer relacionado con el usuario que realiza la petición.
var resourceId = 56; // {{Integer}} ID de modelo 'Resource' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
var opts = { 
  'body':  // {{Resource}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.resourceUpdateChildApiKey(customerIdresourceId, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class resourceUpdateChildApiKeyExample
    {
        public void main()
        {


            var apiInstance = new ResourceChildApi();
            var customerId = 56;  // Integer | ID de customer relacionado con el usuario que realiza la petición.
            var resourceId = 56;  // Integer | ID de modelo 'Resource' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
            var body = new Resource(); // Resource |  (optional) 

            try
            {
                ResourceGet result = apiInstance.resourceUpdateChildApiKey(customerId, resourceId, body);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ResourceChildApi.resourceUpdateChildApiKey: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiResourceChildApi();
$customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
$resourceId = 56; // Integer | ID de modelo 'Resource' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
$body = ; // Resource | 

try {
    $result = $api_instance->resourceUpdateChildApiKey($customerId, $resourceId, $body);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ResourceChildApi->resourceUpdateChildApiKey: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ResourceChildApi;


my $api_instance = WWW::SwaggerClient::ResourceChildApi->new();
my $customerId = 56; # Integer | ID de customer relacionado con el usuario que realiza la petición.
my $resourceId = 56; # Integer | ID de modelo 'Resource' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
my $body = WWW::SwaggerClient::Object::Resource->new(); # Resource | 

eval { 
    my $result = $api_instance->resourceUpdateChildApiKey(customerId => $customerId, resourceId => $resourceId, body => $body);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ResourceChildApi->resourceUpdateChildApiKey: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ResourceChildApi()
customerId = 56 # Integer | ID de customer relacionado con el usuario que realiza la petición.
resourceId = 56 # Integer | ID de modelo 'Resource' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
body =  # Resource |  (optional)

try: 
    api_response = api_instance.resource_update_child_api_key(customerId, resourceId, body=body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ResourceChildApi->resourceUpdateChildApiKey: %s\n" % e)

Parameters

Path parameters
Name Description
customerId*
Integer
ID de customer relacionado con el usuario que realiza la petición.
Required
resourceId*
Integer
ID de modelo 'Resource' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
Required
Body parameters
Name Description
body

Responses

Status: 200 - Respuesta de modelo 'ResourceGet'

Status: 400 - Los parametros incompatibles

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


resourceUpdateChildListApiKey

Editar lista de modelos 'Resource' relacionado con customer que corresponde a parametro 'inPath' {customerId}


/stateless/resources/customer/{customerId}

Usage and SDK Samples

curl -X PUT\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
-H "Content-Type: application/json"\
"https://{env}.nsign.tv/stateless/resources/customer/{customerId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ResourceChildApi;

import java.io.File;
import java.util.*;

public class ResourceChildApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ResourceChildApi apiInstance = new ResourceChildApi();
        Integer customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
        Resource body = ; // Resource | 
        try {
            ResourceGet result = apiInstance.resourceUpdateChildListApiKey(customerId, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ResourceChildApi#resourceUpdateChildListApiKey");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ResourceChildApi;

public class ResourceChildApiExample {

    public static void main(String[] args) {
        ResourceChildApi apiInstance = new ResourceChildApi();
        Integer customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
        Resource body = ; // Resource | 
        try {
            ResourceGet result = apiInstance.resourceUpdateChildListApiKey(customerId, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ResourceChildApi#resourceUpdateChildListApiKey");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *customerId = 56; // ID de customer relacionado con el usuario que realiza la petición.
Resource *body = ; //  (optional)

ResourceChildApi *apiInstance = [[ResourceChildApi alloc] init];

[apiInstance resourceUpdateChildListApiKeyWith:customerId
    body:body
              completionHandler: ^(ResourceGet output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.ResourceChildApi()
var customerId = 56; // {{Integer}} ID de customer relacionado con el usuario que realiza la petición.
var opts = { 
  'body':  // {{Resource}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.resourceUpdateChildListApiKey(customerId, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class resourceUpdateChildListApiKeyExample
    {
        public void main()
        {


            var apiInstance = new ResourceChildApi();
            var customerId = 56;  // Integer | ID de customer relacionado con el usuario que realiza la petición.
            var body = new Resource(); // Resource |  (optional) 

            try
            {
                ResourceGet result = apiInstance.resourceUpdateChildListApiKey(customerId, body);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ResourceChildApi.resourceUpdateChildListApiKey: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiResourceChildApi();
$customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
$body = ; // Resource | 

try {
    $result = $api_instance->resourceUpdateChildListApiKey($customerId, $body);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ResourceChildApi->resourceUpdateChildListApiKey: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ResourceChildApi;


my $api_instance = WWW::SwaggerClient::ResourceChildApi->new();
my $customerId = 56; # Integer | ID de customer relacionado con el usuario que realiza la petición.
my $body = WWW::SwaggerClient::Object::Resource->new(); # Resource | 

eval { 
    my $result = $api_instance->resourceUpdateChildListApiKey(customerId => $customerId, body => $body);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ResourceChildApi->resourceUpdateChildListApiKey: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ResourceChildApi()
customerId = 56 # Integer | ID de customer relacionado con el usuario que realiza la petición.
body =  # Resource |  (optional)

try: 
    api_response = api_instance.resource_update_child_list_api_key(customerId, body=body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ResourceChildApi->resourceUpdateChildListApiKey: %s\n" % e)

Parameters

Path parameters
Name Description
customerId*
Integer
ID de customer relacionado con el usuario que realiza la petición.
Required
Body parameters
Name Description
body

Responses

Status: 200 - Respuesta

Status: 400 - Los parametros incompatibles

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


resourceUploadChild

Crear un nuevo archivo multimedia para customer que corresponde a parametro 'inPath' {customerId}. Formatos que se admite: application/zip, video/mpeg, video/ogg, video/x-msvideo, video/mp2t, video/webm, video/mp4, image/png, image/jpeg, image/webp.


/resource/customer/{customerId}/upload

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
-H "Content-Type: multipart/form-data"\
"https://{env}.nsign.tv/resource/customer/{customerId}/upload"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ResourceChildApi;

import java.io.File;
import java.util.*;

public class ResourceChildApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ResourceChildApi apiInstance = new ResourceChildApi();
        Integer customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
        image/video/zip file = ; // image/video/zip | 
        try {
            ResourceGet result = apiInstance.resourceUploadChild(customerId, file);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ResourceChildApi#resourceUploadChild");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ResourceChildApi;

public class ResourceChildApiExample {

    public static void main(String[] args) {
        ResourceChildApi apiInstance = new ResourceChildApi();
        Integer customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
        image/video/zip file = ; // image/video/zip | 
        try {
            ResourceGet result = apiInstance.resourceUploadChild(customerId, file);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ResourceChildApi#resourceUploadChild");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *customerId = 56; // ID de customer relacionado con el usuario que realiza la petición.
image/video/zip *file = ; //  (optional)

ResourceChildApi *apiInstance = [[ResourceChildApi alloc] init];

[apiInstance resourceUploadChildWith:customerId
    file:file
              completionHandler: ^(ResourceGet output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.ResourceChildApi()
var customerId = 56; // {{Integer}} ID de customer relacionado con el usuario que realiza la petición.
var opts = { 
  'file':  // {{image/video/zip}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.resourceUploadChild(customerId, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class resourceUploadChildExample
    {
        public void main()
        {


            var apiInstance = new ResourceChildApi();
            var customerId = 56;  // Integer | ID de customer relacionado con el usuario que realiza la petición.
            var file = new image/video/zip(); // image/video/zip |  (optional) 

            try
            {
                ResourceGet result = apiInstance.resourceUploadChild(customerId, file);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ResourceChildApi.resourceUploadChild: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiResourceChildApi();
$customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
$file = ; // image/video/zip | 

try {
    $result = $api_instance->resourceUploadChild($customerId, $file);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ResourceChildApi->resourceUploadChild: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ResourceChildApi;


my $api_instance = WWW::SwaggerClient::ResourceChildApi->new();
my $customerId = 56; # Integer | ID de customer relacionado con el usuario que realiza la petición.
my $file = ; # image/video/zip | 

eval { 
    my $result = $api_instance->resourceUploadChild(customerId => $customerId, file => $file);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ResourceChildApi->resourceUploadChild: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ResourceChildApi()
customerId = 56 # Integer | ID de customer relacionado con el usuario que realiza la petición.
file =  # image/video/zip |  (optional)

try: 
    api_response = api_instance.resource_upload_child(customerId, file=file)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ResourceChildApi->resourceUploadChild: %s\n" % e)

Parameters

Path parameters
Name Description
customerId*
Integer
ID de customer relacionado con el usuario que realiza la petición.
Required
Form parameters
Name Description
file
image/video/zip

Responses

Status: 200 - Respuesta de modelo 'ResourceGet'.

Status: 400 - Los parametros incompatibles

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


resourceUploadUpdateChild

Actualizar archivo multimedia relacionado con el customer que corresponde a parametro 'inPath' {customerId}. Formatos que se admite: application/zip, video/mpeg, video/ogg, video/x-msvideo, video/mp2t, video/webm, video/mp4, image/png, image/jpeg, image/webp.


/resource/customer/{customerId}/upload/{resourceId}

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
-H "Content-Type: multipart/form-data"\
"https://{env}.nsign.tv/resource/customer/{customerId}/upload/{resourceId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ResourceChildApi;

import java.io.File;
import java.util.*;

public class ResourceChildApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ResourceChildApi apiInstance = new ResourceChildApi();
        Integer customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
        Integer resourceId = 56; // Integer | ID de modelo 'Resource' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
        image/video/zip file = ; // image/video/zip | 
        try {
            ResourceGet result = apiInstance.resourceUploadUpdateChild(customerId, resourceId, file);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ResourceChildApi#resourceUploadUpdateChild");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ResourceChildApi;

public class ResourceChildApiExample {

    public static void main(String[] args) {
        ResourceChildApi apiInstance = new ResourceChildApi();
        Integer customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
        Integer resourceId = 56; // Integer | ID de modelo 'Resource' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
        image/video/zip file = ; // image/video/zip | 
        try {
            ResourceGet result = apiInstance.resourceUploadUpdateChild(customerId, resourceId, file);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ResourceChildApi#resourceUploadUpdateChild");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *customerId = 56; // ID de customer relacionado con el usuario que realiza la petición.
Integer *resourceId = 56; // ID de modelo 'Resource' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
image/video/zip *file = ; //  (optional)

ResourceChildApi *apiInstance = [[ResourceChildApi alloc] init];

[apiInstance resourceUploadUpdateChildWith:customerId
    resourceId:resourceId
    file:file
              completionHandler: ^(ResourceGet output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.ResourceChildApi()
var customerId = 56; // {{Integer}} ID de customer relacionado con el usuario que realiza la petición.
var resourceId = 56; // {{Integer}} ID de modelo 'Resource' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
var opts = { 
  'file':  // {{image/video/zip}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.resourceUploadUpdateChild(customerIdresourceId, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class resourceUploadUpdateChildExample
    {
        public void main()
        {


            var apiInstance = new ResourceChildApi();
            var customerId = 56;  // Integer | ID de customer relacionado con el usuario que realiza la petición.
            var resourceId = 56;  // Integer | ID de modelo 'Resource' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
            var file = new image/video/zip(); // image/video/zip |  (optional) 

            try
            {
                ResourceGet result = apiInstance.resourceUploadUpdateChild(customerId, resourceId, file);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ResourceChildApi.resourceUploadUpdateChild: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiResourceChildApi();
$customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
$resourceId = 56; // Integer | ID de modelo 'Resource' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
$file = ; // image/video/zip | 

try {
    $result = $api_instance->resourceUploadUpdateChild($customerId, $resourceId, $file);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ResourceChildApi->resourceUploadUpdateChild: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ResourceChildApi;


my $api_instance = WWW::SwaggerClient::ResourceChildApi->new();
my $customerId = 56; # Integer | ID de customer relacionado con el usuario que realiza la petición.
my $resourceId = 56; # Integer | ID de modelo 'Resource' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
my $file = ; # image/video/zip | 

eval { 
    my $result = $api_instance->resourceUploadUpdateChild(customerId => $customerId, resourceId => $resourceId, file => $file);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ResourceChildApi->resourceUploadUpdateChild: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ResourceChildApi()
customerId = 56 # Integer | ID de customer relacionado con el usuario que realiza la petición.
resourceId = 56 # Integer | ID de modelo 'Resource' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
file =  # image/video/zip |  (optional)

try: 
    api_response = api_instance.resource_upload_update_child(customerId, resourceId, file=file)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ResourceChildApi->resourceUploadUpdateChild: %s\n" % e)

Parameters

Path parameters
Name Description
customerId*
Integer
ID de customer relacionado con el usuario que realiza la petición.
Required
resourceId*
Integer
ID de modelo 'Resource' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
Required
Form parameters
Name Description
file
image/video/zip

Responses

Status: 200 - Respuesta de modelo 'ResourceGet'

Status: 400 - Los parametros incompatibles

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


Schedule

scheduleCreate

Crear un nuevo modelo 'Schedule' relacionado con el usuario que realiza la petición.


/schedule

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
-H "Content-Type: application/json"\
"https://{env}.nsign.tv/schedule"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ScheduleApi;

import java.io.File;
import java.util.*;

public class ScheduleApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ScheduleApi apiInstance = new ScheduleApi();
        SchedulePost body = ; // SchedulePost | 
        try {
            ScheduleGet result = apiInstance.scheduleCreate(body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ScheduleApi#scheduleCreate");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ScheduleApi;

public class ScheduleApiExample {

    public static void main(String[] args) {
        ScheduleApi apiInstance = new ScheduleApi();
        SchedulePost body = ; // SchedulePost | 
        try {
            ScheduleGet result = apiInstance.scheduleCreate(body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ScheduleApi#scheduleCreate");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
SchedulePost *body = ; //  (optional)

ScheduleApi *apiInstance = [[ScheduleApi alloc] init];

[apiInstance scheduleCreateWith:body
              completionHandler: ^(ScheduleGet output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.ScheduleApi()
var opts = { 
  'body':  // {{SchedulePost}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.scheduleCreate(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class scheduleCreateExample
    {
        public void main()
        {


            var apiInstance = new ScheduleApi();
            var body = new SchedulePost(); // SchedulePost |  (optional) 

            try
            {
                ScheduleGet result = apiInstance.scheduleCreate(body);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ScheduleApi.scheduleCreate: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiScheduleApi();
$body = ; // SchedulePost | 

try {
    $result = $api_instance->scheduleCreate($body);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ScheduleApi->scheduleCreate: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ScheduleApi;


my $api_instance = WWW::SwaggerClient::ScheduleApi->new();
my $body = WWW::SwaggerClient::Object::SchedulePost->new(); # SchedulePost | 

eval { 
    my $result = $api_instance->scheduleCreate(body => $body);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ScheduleApi->scheduleCreate: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ScheduleApi()
body =  # SchedulePost |  (optional)

try: 
    api_response = api_instance.schedule_create(body=body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ScheduleApi->scheduleCreate: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - Respuesta de modelo 'ScheduleGet'.

Status: 400 - Los parametros incompatibles

Status: 401 - El token no es válido

Status: 404 - El modelo no encontrado


scheduleDelete

Eliminar el modelo 'Schedule' que corresponde a parametro 'inPath' {scheduleId}.


/schedule/{scheduleId}

Usage and SDK Samples

curl -X DELETE\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/schedule/{scheduleId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ScheduleApi;

import java.io.File;
import java.util.*;

public class ScheduleApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ScheduleApi apiInstance = new ScheduleApi();
        Integer scheduleId = 56; // Integer | ID de modelo 'Schedule' relacionado con el usuario que realiza la petición.
        try {
            apiInstance.scheduleDelete(scheduleId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ScheduleApi#scheduleDelete");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ScheduleApi;

public class ScheduleApiExample {

    public static void main(String[] args) {
        ScheduleApi apiInstance = new ScheduleApi();
        Integer scheduleId = 56; // Integer | ID de modelo 'Schedule' relacionado con el usuario que realiza la petición.
        try {
            apiInstance.scheduleDelete(scheduleId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ScheduleApi#scheduleDelete");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *scheduleId = 56; // ID de modelo 'Schedule' relacionado con el usuario que realiza la petición.

ScheduleApi *apiInstance = [[ScheduleApi alloc] init];

[apiInstance scheduleDeleteWith:scheduleId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.ScheduleApi()
var scheduleId = 56; // {{Integer}} ID de modelo 'Schedule' relacionado con el usuario que realiza la petición.

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.scheduleDelete(scheduleId, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class scheduleDeleteExample
    {
        public void main()
        {


            var apiInstance = new ScheduleApi();
            var scheduleId = 56;  // Integer | ID de modelo 'Schedule' relacionado con el usuario que realiza la petición.

            try
            {
                apiInstance.scheduleDelete(scheduleId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ScheduleApi.scheduleDelete: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiScheduleApi();
$scheduleId = 56; // Integer | ID de modelo 'Schedule' relacionado con el usuario que realiza la petición.

try {
    $api_instance->scheduleDelete($scheduleId);
} catch (Exception $e) {
    echo 'Exception when calling ScheduleApi->scheduleDelete: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ScheduleApi;


my $api_instance = WWW::SwaggerClient::ScheduleApi->new();
my $scheduleId = 56; # Integer | ID de modelo 'Schedule' relacionado con el usuario que realiza la petición.

eval { 
    $api_instance->scheduleDelete(scheduleId => $scheduleId);
};
if ($@) {
    warn "Exception when calling ScheduleApi->scheduleDelete: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ScheduleApi()
scheduleId = 56 # Integer | ID de modelo 'Schedule' relacionado con el usuario que realiza la petición.

try: 
    api_instance.schedule_delete(scheduleId)
except ApiException as e:
    print("Exception when calling ScheduleApi->scheduleDelete: %s\n" % e)

Parameters

Path parameters
Name Description
scheduleId*
Integer
ID de modelo 'Schedule' relacionado con el usuario que realiza la petición.
Required

Responses

Status: 200 - Confirmación de acción.

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


scheduleGet

Información completa de modelo 'Schedule' que corresponde a parametro 'inPath' {scheduleId}.


/schedule/{scheduleId}

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/schedule/{scheduleId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ScheduleApi;

import java.io.File;
import java.util.*;

public class ScheduleApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ScheduleApi apiInstance = new ScheduleApi();
        Integer scheduleId = 56; // Integer | ID de modelo 'Schedule' relacionado con el usuario que realiza la petición.
        try {
            ScheduleGet result = apiInstance.scheduleGet(scheduleId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ScheduleApi#scheduleGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ScheduleApi;

public class ScheduleApiExample {

    public static void main(String[] args) {
        ScheduleApi apiInstance = new ScheduleApi();
        Integer scheduleId = 56; // Integer | ID de modelo 'Schedule' relacionado con el usuario que realiza la petición.
        try {
            ScheduleGet result = apiInstance.scheduleGet(scheduleId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ScheduleApi#scheduleGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *scheduleId = 56; // ID de modelo 'Schedule' relacionado con el usuario que realiza la petición.

ScheduleApi *apiInstance = [[ScheduleApi alloc] init];

[apiInstance scheduleGetWith:scheduleId
              completionHandler: ^(ScheduleGet output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.ScheduleApi()
var scheduleId = 56; // {{Integer}} ID de modelo 'Schedule' relacionado con el usuario que realiza la petición.

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.scheduleGet(scheduleId, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class scheduleGetExample
    {
        public void main()
        {


            var apiInstance = new ScheduleApi();
            var scheduleId = 56;  // Integer | ID de modelo 'Schedule' relacionado con el usuario que realiza la petición.

            try
            {
                ScheduleGet result = apiInstance.scheduleGet(scheduleId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ScheduleApi.scheduleGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiScheduleApi();
$scheduleId = 56; // Integer | ID de modelo 'Schedule' relacionado con el usuario que realiza la petición.

try {
    $result = $api_instance->scheduleGet($scheduleId);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ScheduleApi->scheduleGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ScheduleApi;


my $api_instance = WWW::SwaggerClient::ScheduleApi->new();
my $scheduleId = 56; # Integer | ID de modelo 'Schedule' relacionado con el usuario que realiza la petición.

eval { 
    my $result = $api_instance->scheduleGet(scheduleId => $scheduleId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ScheduleApi->scheduleGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ScheduleApi()
scheduleId = 56 # Integer | ID de modelo 'Schedule' relacionado con el usuario que realiza la petición.

try: 
    api_response = api_instance.schedule_get(scheduleId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ScheduleApi->scheduleGet: %s\n" % e)

Parameters

Path parameters
Name Description
scheduleId*
Integer
ID de modelo 'Schedule' relacionado con el usuario que realiza la petición.
Required

Responses

Status: 200 - Respuesta de modelo 'ScheduleGet'.

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


scheduleList

Listado de modelos 'ScheduleNormalizer' relacionados con el usuario que realiza la petición.


/schedules

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/schedules"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ScheduleApi;

import java.io.File;
import java.util.*;

public class ScheduleApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ScheduleApi apiInstance = new ScheduleApi();
        try {
            array[ScheduleNormalizer] result = apiInstance.scheduleList();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ScheduleApi#scheduleList");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ScheduleApi;

public class ScheduleApiExample {

    public static void main(String[] args) {
        ScheduleApi apiInstance = new ScheduleApi();
        try {
            array[ScheduleNormalizer] result = apiInstance.scheduleList();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ScheduleApi#scheduleList");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];

ScheduleApi *apiInstance = [[ScheduleApi alloc] init];

[apiInstance scheduleListWithCompletionHandler: 
              ^(array[ScheduleNormalizer] output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.ScheduleApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.scheduleList(callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class scheduleListExample
    {
        public void main()
        {


            var apiInstance = new ScheduleApi();

            try
            {
                array[ScheduleNormalizer] result = apiInstance.scheduleList();
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ScheduleApi.scheduleList: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiScheduleApi();

try {
    $result = $api_instance->scheduleList();
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ScheduleApi->scheduleList: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ScheduleApi;


my $api_instance = WWW::SwaggerClient::ScheduleApi->new();

eval { 
    my $result = $api_instance->scheduleList();
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ScheduleApi->scheduleList: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ScheduleApi()

try: 
    api_response = api_instance.schedule_list()
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ScheduleApi->scheduleList: %s\n" % e)

Parameters

Responses

Status: 200 - Respuesta de listado de modelos 'ScheduleNormalizer'.

Status: 401 - El token no es válido


vUpdate

Editar el modelo 'Schedule' que corresponde a parametro 'inPath' {scheduleId}.


/schedule/{scheduleId}

Usage and SDK Samples

curl -X PUT\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
-H "Content-Type: application/json"\
"https://{env}.nsign.tv/schedule/{scheduleId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ScheduleApi;

import java.io.File;
import java.util.*;

public class ScheduleApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ScheduleApi apiInstance = new ScheduleApi();
        Integer scheduleId = 56; // Integer | ID de modelo 'Schedule' relacionado con el usuario que realiza la petición.
        SchedulePost body = ; // SchedulePost | 
        try {
            ScheduleGet result = apiInstance.vUpdate(scheduleId, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ScheduleApi#vUpdate");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ScheduleApi;

public class ScheduleApiExample {

    public static void main(String[] args) {
        ScheduleApi apiInstance = new ScheduleApi();
        Integer scheduleId = 56; // Integer | ID de modelo 'Schedule' relacionado con el usuario que realiza la petición.
        SchedulePost body = ; // SchedulePost | 
        try {
            ScheduleGet result = apiInstance.vUpdate(scheduleId, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ScheduleApi#vUpdate");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *scheduleId = 56; // ID de modelo 'Schedule' relacionado con el usuario que realiza la petición.
SchedulePost *body = ; //  (optional)

ScheduleApi *apiInstance = [[ScheduleApi alloc] init];

[apiInstance vUpdateWith:scheduleId
    body:body
              completionHandler: ^(ScheduleGet output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.ScheduleApi()
var scheduleId = 56; // {{Integer}} ID de modelo 'Schedule' relacionado con el usuario que realiza la petición.
var opts = { 
  'body':  // {{SchedulePost}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.vUpdate(scheduleId, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class vUpdateExample
    {
        public void main()
        {


            var apiInstance = new ScheduleApi();
            var scheduleId = 56;  // Integer | ID de modelo 'Schedule' relacionado con el usuario que realiza la petición.
            var body = new SchedulePost(); // SchedulePost |  (optional) 

            try
            {
                ScheduleGet result = apiInstance.vUpdate(scheduleId, body);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ScheduleApi.vUpdate: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiScheduleApi();
$scheduleId = 56; // Integer | ID de modelo 'Schedule' relacionado con el usuario que realiza la petición.
$body = ; // SchedulePost | 

try {
    $result = $api_instance->vUpdate($scheduleId, $body);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ScheduleApi->vUpdate: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ScheduleApi;


my $api_instance = WWW::SwaggerClient::ScheduleApi->new();
my $scheduleId = 56; # Integer | ID de modelo 'Schedule' relacionado con el usuario que realiza la petición.
my $body = WWW::SwaggerClient::Object::SchedulePost->new(); # SchedulePost | 

eval { 
    my $result = $api_instance->vUpdate(scheduleId => $scheduleId, body => $body);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ScheduleApi->vUpdate: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ScheduleApi()
scheduleId = 56 # Integer | ID de modelo 'Schedule' relacionado con el usuario que realiza la petición.
body =  # SchedulePost |  (optional)

try: 
    api_response = api_instance.v_update(scheduleId, body=body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ScheduleApi->vUpdate: %s\n" % e)

Parameters

Path parameters
Name Description
scheduleId*
Integer
ID de modelo 'Schedule' relacionado con el usuario que realiza la petición.
Required
Body parameters
Name Description
body

Responses

Status: 200 - Respuesta de modelo 'ScheduleGet'.

Status: 400 - Los parametros incompatibles

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


ScheduleChild

scheduleCreateChild

Crear un nuevo modelo 'Schedule' para customer que corresponde a parametro 'inPath' {customerId}.


/schedule/customer/{customerId}

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
-H "Content-Type: application/json"\
"https://{env}.nsign.tv/schedule/customer/{customerId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ScheduleChildApi;

import java.io.File;
import java.util.*;

public class ScheduleChildApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ScheduleChildApi apiInstance = new ScheduleChildApi();
        Integer customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
        SchedulePost body = ; // SchedulePost | 
        try {
            PlaylistGet result = apiInstance.scheduleCreateChild(customerId, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ScheduleChildApi#scheduleCreateChild");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ScheduleChildApi;

public class ScheduleChildApiExample {

    public static void main(String[] args) {
        ScheduleChildApi apiInstance = new ScheduleChildApi();
        Integer customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
        SchedulePost body = ; // SchedulePost | 
        try {
            PlaylistGet result = apiInstance.scheduleCreateChild(customerId, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ScheduleChildApi#scheduleCreateChild");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *customerId = 56; // ID de customer relacionado con el usuario que realiza la petición.
SchedulePost *body = ; //  (optional)

ScheduleChildApi *apiInstance = [[ScheduleChildApi alloc] init];

[apiInstance scheduleCreateChildWith:customerId
    body:body
              completionHandler: ^(PlaylistGet output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.ScheduleChildApi()
var customerId = 56; // {{Integer}} ID de customer relacionado con el usuario que realiza la petición.
var opts = { 
  'body':  // {{SchedulePost}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.scheduleCreateChild(customerId, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class scheduleCreateChildExample
    {
        public void main()
        {


            var apiInstance = new ScheduleChildApi();
            var customerId = 56;  // Integer | ID de customer relacionado con el usuario que realiza la petición.
            var body = new SchedulePost(); // SchedulePost |  (optional) 

            try
            {
                PlaylistGet result = apiInstance.scheduleCreateChild(customerId, body);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ScheduleChildApi.scheduleCreateChild: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiScheduleChildApi();
$customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
$body = ; // SchedulePost | 

try {
    $result = $api_instance->scheduleCreateChild($customerId, $body);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ScheduleChildApi->scheduleCreateChild: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ScheduleChildApi;


my $api_instance = WWW::SwaggerClient::ScheduleChildApi->new();
my $customerId = 56; # Integer | ID de customer relacionado con el usuario que realiza la petición.
my $body = WWW::SwaggerClient::Object::SchedulePost->new(); # SchedulePost | 

eval { 
    my $result = $api_instance->scheduleCreateChild(customerId => $customerId, body => $body);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ScheduleChildApi->scheduleCreateChild: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ScheduleChildApi()
customerId = 56 # Integer | ID de customer relacionado con el usuario que realiza la petición.
body =  # SchedulePost |  (optional)

try: 
    api_response = api_instance.schedule_create_child(customerId, body=body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ScheduleChildApi->scheduleCreateChild: %s\n" % e)

Parameters

Path parameters
Name Description
customerId*
Integer
ID de customer relacionado con el usuario que realiza la petición.
Required
Body parameters
Name Description
body

Responses

Status: 200 - Respuesta de modelo 'ScheduleGet'.

Status: 400 - Los parametros incompatibles

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


scheduleDeleteChild

Eliminar el modelo 'Schedule' relacionado con customer que corresponde a parametro 'inPath' {customerId}.


/schedule/customer/{customerId}/{scheduleId}

Usage and SDK Samples

curl -X DELETE\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/schedule/customer/{customerId}/{scheduleId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ScheduleChildApi;

import java.io.File;
import java.util.*;

public class ScheduleChildApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ScheduleChildApi apiInstance = new ScheduleChildApi();
        Integer scheduleId = 56; // Integer | ID de modelo 'Schedule' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
        Integer customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
        try {
            apiInstance.scheduleDeleteChild(scheduleId, customerId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ScheduleChildApi#scheduleDeleteChild");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ScheduleChildApi;

public class ScheduleChildApiExample {

    public static void main(String[] args) {
        ScheduleChildApi apiInstance = new ScheduleChildApi();
        Integer scheduleId = 56; // Integer | ID de modelo 'Schedule' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
        Integer customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
        try {
            apiInstance.scheduleDeleteChild(scheduleId, customerId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ScheduleChildApi#scheduleDeleteChild");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *scheduleId = 56; // ID de modelo 'Schedule' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
Integer *customerId = 56; // ID de customer relacionado con el usuario que realiza la petición.

ScheduleChildApi *apiInstance = [[ScheduleChildApi alloc] init];

[apiInstance scheduleDeleteChildWith:scheduleId
    customerId:customerId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.ScheduleChildApi()
var scheduleId = 56; // {{Integer}} ID de modelo 'Schedule' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
var customerId = 56; // {{Integer}} ID de customer relacionado con el usuario que realiza la petición.

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.scheduleDeleteChild(scheduleId, customerId, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class scheduleDeleteChildExample
    {
        public void main()
        {


            var apiInstance = new ScheduleChildApi();
            var scheduleId = 56;  // Integer | ID de modelo 'Schedule' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
            var customerId = 56;  // Integer | ID de customer relacionado con el usuario que realiza la petición.

            try
            {
                apiInstance.scheduleDeleteChild(scheduleId, customerId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ScheduleChildApi.scheduleDeleteChild: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiScheduleChildApi();
$scheduleId = 56; // Integer | ID de modelo 'Schedule' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
$customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.

try {
    $api_instance->scheduleDeleteChild($scheduleId, $customerId);
} catch (Exception $e) {
    echo 'Exception when calling ScheduleChildApi->scheduleDeleteChild: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ScheduleChildApi;


my $api_instance = WWW::SwaggerClient::ScheduleChildApi->new();
my $scheduleId = 56; # Integer | ID de modelo 'Schedule' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
my $customerId = 56; # Integer | ID de customer relacionado con el usuario que realiza la petición.

eval { 
    $api_instance->scheduleDeleteChild(scheduleId => $scheduleId, customerId => $customerId);
};
if ($@) {
    warn "Exception when calling ScheduleChildApi->scheduleDeleteChild: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ScheduleChildApi()
scheduleId = 56 # Integer | ID de modelo 'Schedule' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
customerId = 56 # Integer | ID de customer relacionado con el usuario que realiza la petición.

try: 
    api_instance.schedule_delete_child(scheduleId, customerId)
except ApiException as e:
    print("Exception when calling ScheduleChildApi->scheduleDeleteChild: %s\n" % e)

Parameters

Path parameters
Name Description
scheduleId*
Integer
ID de modelo 'Schedule' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
Required
customerId*
Integer
ID de customer relacionado con el usuario que realiza la petición.
Required

Responses

Status: 200 - Confirmación de acción.

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


scheduleGetChild

Información completa de un contenido multimedia relacionada con el modelo que corresponde a parametro 'inPath' {scheduleId}.


/schedule/customer/{customerId}/{scheduleId}

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/schedule/customer/{customerId}/{scheduleId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ScheduleChildApi;

import java.io.File;
import java.util.*;

public class ScheduleChildApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ScheduleChildApi apiInstance = new ScheduleChildApi();
        Integer customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
        Integer scheduleId = 56; // Integer | ID de modelo 'Schedule' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
        try {
            ScheduleGet result = apiInstance.scheduleGetChild(customerId, scheduleId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ScheduleChildApi#scheduleGetChild");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ScheduleChildApi;

public class ScheduleChildApiExample {

    public static void main(String[] args) {
        ScheduleChildApi apiInstance = new ScheduleChildApi();
        Integer customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
        Integer scheduleId = 56; // Integer | ID de modelo 'Schedule' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
        try {
            ScheduleGet result = apiInstance.scheduleGetChild(customerId, scheduleId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ScheduleChildApi#scheduleGetChild");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *customerId = 56; // ID de customer relacionado con el usuario que realiza la petición.
Integer *scheduleId = 56; // ID de modelo 'Schedule' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.

ScheduleChildApi *apiInstance = [[ScheduleChildApi alloc] init];

[apiInstance scheduleGetChildWith:customerId
    scheduleId:scheduleId
              completionHandler: ^(ScheduleGet output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.ScheduleChildApi()
var customerId = 56; // {{Integer}} ID de customer relacionado con el usuario que realiza la petición.
var scheduleId = 56; // {{Integer}} ID de modelo 'Schedule' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.scheduleGetChild(customerId, scheduleId, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class scheduleGetChildExample
    {
        public void main()
        {


            var apiInstance = new ScheduleChildApi();
            var customerId = 56;  // Integer | ID de customer relacionado con el usuario que realiza la petición.
            var scheduleId = 56;  // Integer | ID de modelo 'Schedule' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.

            try
            {
                ScheduleGet result = apiInstance.scheduleGetChild(customerId, scheduleId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ScheduleChildApi.scheduleGetChild: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiScheduleChildApi();
$customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
$scheduleId = 56; // Integer | ID de modelo 'Schedule' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.

try {
    $result = $api_instance->scheduleGetChild($customerId, $scheduleId);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ScheduleChildApi->scheduleGetChild: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ScheduleChildApi;


my $api_instance = WWW::SwaggerClient::ScheduleChildApi->new();
my $customerId = 56; # Integer | ID de customer relacionado con el usuario que realiza la petición.
my $scheduleId = 56; # Integer | ID de modelo 'Schedule' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.

eval { 
    my $result = $api_instance->scheduleGetChild(customerId => $customerId, scheduleId => $scheduleId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ScheduleChildApi->scheduleGetChild: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ScheduleChildApi()
customerId = 56 # Integer | ID de customer relacionado con el usuario que realiza la petición.
scheduleId = 56 # Integer | ID de modelo 'Schedule' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.

try: 
    api_response = api_instance.schedule_get_child(customerId, scheduleId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ScheduleChildApi->scheduleGetChild: %s\n" % e)

Parameters

Path parameters
Name Description
customerId*
Integer
ID de customer relacionado con el usuario que realiza la petición.
Required
scheduleId*
Integer
ID de modelo 'Schedule' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
Required

Responses

Status: 200 - Respuesta de modelo 'ScheduleGet'

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


scheduleListChild

Listado de modelos 'ScheduleNormalizer' relacionados con el customer que corresponde a parametro 'inPath' {customerId}


/schedules/customer/{customerId}

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/schedules/customer/{customerId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ScheduleChildApi;

import java.io.File;
import java.util.*;

public class ScheduleChildApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ScheduleChildApi apiInstance = new ScheduleChildApi();
        Integer customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
        try {
            array[ScheduleNormalizer] result = apiInstance.scheduleListChild(customerId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ScheduleChildApi#scheduleListChild");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ScheduleChildApi;

public class ScheduleChildApiExample {

    public static void main(String[] args) {
        ScheduleChildApi apiInstance = new ScheduleChildApi();
        Integer customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
        try {
            array[ScheduleNormalizer] result = apiInstance.scheduleListChild(customerId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ScheduleChildApi#scheduleListChild");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *customerId = 56; // ID de customer relacionado con el usuario que realiza la petición.

ScheduleChildApi *apiInstance = [[ScheduleChildApi alloc] init];

[apiInstance scheduleListChildWith:customerId
              completionHandler: ^(array[ScheduleNormalizer] output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.ScheduleChildApi()
var customerId = 56; // {{Integer}} ID de customer relacionado con el usuario que realiza la petición.

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.scheduleListChild(customerId, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class scheduleListChildExample
    {
        public void main()
        {


            var apiInstance = new ScheduleChildApi();
            var customerId = 56;  // Integer | ID de customer relacionado con el usuario que realiza la petición.

            try
            {
                array[ScheduleNormalizer] result = apiInstance.scheduleListChild(customerId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ScheduleChildApi.scheduleListChild: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiScheduleChildApi();
$customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.

try {
    $result = $api_instance->scheduleListChild($customerId);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ScheduleChildApi->scheduleListChild: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ScheduleChildApi;


my $api_instance = WWW::SwaggerClient::ScheduleChildApi->new();
my $customerId = 56; # Integer | ID de customer relacionado con el usuario que realiza la petición.

eval { 
    my $result = $api_instance->scheduleListChild(customerId => $customerId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ScheduleChildApi->scheduleListChild: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ScheduleChildApi()
customerId = 56 # Integer | ID de customer relacionado con el usuario que realiza la petición.

try: 
    api_response = api_instance.schedule_list_child(customerId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ScheduleChildApi->scheduleListChild: %s\n" % e)

Parameters

Path parameters
Name Description
customerId*
Integer
ID de customer relacionado con el usuario que realiza la petición.
Required

Responses

Status: 200 - Respuesta de listado de modelos 'ScheduleNormalizer'.

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


scheduleUpdateChild

Editar el modelo 'Schedule' relacionado con customer que corresponde a parametro 'inPath' {customerId}


/schedule/customer/{customerId}/{scheduleId}

Usage and SDK Samples

curl -X PUT\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
-H "Content-Type: application/json"\
"https://{env}.nsign.tv/schedule/customer/{customerId}/{scheduleId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ScheduleChildApi;

import java.io.File;
import java.util.*;

public class ScheduleChildApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ScheduleChildApi apiInstance = new ScheduleChildApi();
        Integer customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
        Integer scheduleId = 56; // Integer | ID de modelo 'Schedule' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
        SchedulePost body = ; // SchedulePost | 
        try {
            ScheduleGet result = apiInstance.scheduleUpdateChild(customerId, scheduleId, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ScheduleChildApi#scheduleUpdateChild");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ScheduleChildApi;

public class ScheduleChildApiExample {

    public static void main(String[] args) {
        ScheduleChildApi apiInstance = new ScheduleChildApi();
        Integer customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
        Integer scheduleId = 56; // Integer | ID de modelo 'Schedule' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
        SchedulePost body = ; // SchedulePost | 
        try {
            ScheduleGet result = apiInstance.scheduleUpdateChild(customerId, scheduleId, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ScheduleChildApi#scheduleUpdateChild");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *customerId = 56; // ID de customer relacionado con el usuario que realiza la petición.
Integer *scheduleId = 56; // ID de modelo 'Schedule' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
SchedulePost *body = ; //  (optional)

ScheduleChildApi *apiInstance = [[ScheduleChildApi alloc] init];

[apiInstance scheduleUpdateChildWith:customerId
    scheduleId:scheduleId
    body:body
              completionHandler: ^(ScheduleGet output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.ScheduleChildApi()
var customerId = 56; // {{Integer}} ID de customer relacionado con el usuario que realiza la petición.
var scheduleId = 56; // {{Integer}} ID de modelo 'Schedule' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
var opts = { 
  'body':  // {{SchedulePost}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.scheduleUpdateChild(customerIdscheduleId, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class scheduleUpdateChildExample
    {
        public void main()
        {


            var apiInstance = new ScheduleChildApi();
            var customerId = 56;  // Integer | ID de customer relacionado con el usuario que realiza la petición.
            var scheduleId = 56;  // Integer | ID de modelo 'Schedule' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
            var body = new SchedulePost(); // SchedulePost |  (optional) 

            try
            {
                ScheduleGet result = apiInstance.scheduleUpdateChild(customerId, scheduleId, body);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ScheduleChildApi.scheduleUpdateChild: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiScheduleChildApi();
$customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
$scheduleId = 56; // Integer | ID de modelo 'Schedule' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
$body = ; // SchedulePost | 

try {
    $result = $api_instance->scheduleUpdateChild($customerId, $scheduleId, $body);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ScheduleChildApi->scheduleUpdateChild: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ScheduleChildApi;


my $api_instance = WWW::SwaggerClient::ScheduleChildApi->new();
my $customerId = 56; # Integer | ID de customer relacionado con el usuario que realiza la petición.
my $scheduleId = 56; # Integer | ID de modelo 'Schedule' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
my $body = WWW::SwaggerClient::Object::SchedulePost->new(); # SchedulePost | 

eval { 
    my $result = $api_instance->scheduleUpdateChild(customerId => $customerId, scheduleId => $scheduleId, body => $body);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ScheduleChildApi->scheduleUpdateChild: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ScheduleChildApi()
customerId = 56 # Integer | ID de customer relacionado con el usuario que realiza la petición.
scheduleId = 56 # Integer | ID de modelo 'Schedule' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
body =  # SchedulePost |  (optional)

try: 
    api_response = api_instance.schedule_update_child(customerId, scheduleId, body=body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ScheduleChildApi->scheduleUpdateChild: %s\n" % e)

Parameters

Path parameters
Name Description
customerId*
Integer
ID de customer relacionado con el usuario que realiza la petición.
Required
scheduleId*
Integer
ID de modelo 'Schedule' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
Required
Body parameters
Name Description
body

Responses

Status: 200 - Respuesta de modelo 'ScheduleGet'

Status: 400 - Los parametros incompatibles

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


Stateless

trafficCapacityGetApiKey

Información completa de modelo 'KpiLive' relacionado con trafficStore que corresponde a parametro 'inPath' {trafficStoreId}. Acesso con apiKey.


/stateless/live/capacity/{trafficStoreId}

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/stateless/live/capacity/{trafficStoreId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.StatelessApi;

import java.io.File;
import java.util.*;

public class StatelessApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        StatelessApi apiInstance = new StatelessApi();
        Integer trafficStoreId = 56; // Integer | ID de modelo 'TrafficStore' relacionado con el usuario que realiza la petición.
        try {
            KpiLive result = apiInstance.trafficCapacityGetApiKey(trafficStoreId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling StatelessApi#trafficCapacityGetApiKey");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.StatelessApi;

public class StatelessApiExample {

    public static void main(String[] args) {
        StatelessApi apiInstance = new StatelessApi();
        Integer trafficStoreId = 56; // Integer | ID de modelo 'TrafficStore' relacionado con el usuario que realiza la petición.
        try {
            KpiLive result = apiInstance.trafficCapacityGetApiKey(trafficStoreId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling StatelessApi#trafficCapacityGetApiKey");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *trafficStoreId = 56; // ID de modelo 'TrafficStore' relacionado con el usuario que realiza la petición.

StatelessApi *apiInstance = [[StatelessApi alloc] init];

[apiInstance trafficCapacityGetApiKeyWith:trafficStoreId
              completionHandler: ^(KpiLive output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.StatelessApi()
var trafficStoreId = 56; // {{Integer}} ID de modelo 'TrafficStore' relacionado con el usuario que realiza la petición.

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.trafficCapacityGetApiKey(trafficStoreId, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class trafficCapacityGetApiKeyExample
    {
        public void main()
        {


            var apiInstance = new StatelessApi();
            var trafficStoreId = 56;  // Integer | ID de modelo 'TrafficStore' relacionado con el usuario que realiza la petición.

            try
            {
                KpiLive result = apiInstance.trafficCapacityGetApiKey(trafficStoreId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling StatelessApi.trafficCapacityGetApiKey: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiStatelessApi();
$trafficStoreId = 56; // Integer | ID de modelo 'TrafficStore' relacionado con el usuario que realiza la petición.

try {
    $result = $api_instance->trafficCapacityGetApiKey($trafficStoreId);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling StatelessApi->trafficCapacityGetApiKey: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::StatelessApi;


my $api_instance = WWW::SwaggerClient::StatelessApi->new();
my $trafficStoreId = 56; # Integer | ID de modelo 'TrafficStore' relacionado con el usuario que realiza la petición.

eval { 
    my $result = $api_instance->trafficCapacityGetApiKey(trafficStoreId => $trafficStoreId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling StatelessApi->trafficCapacityGetApiKey: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.StatelessApi()
trafficStoreId = 56 # Integer | ID de modelo 'TrafficStore' relacionado con el usuario que realiza la petición.

try: 
    api_response = api_instance.traffic_capacity_get_api_key(trafficStoreId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling StatelessApi->trafficCapacityGetApiKey: %s\n" % e)

Parameters

Path parameters
Name Description
trafficStoreId*
Integer
ID de modelo 'TrafficStore' relacionado con el usuario que realiza la petición.
Required

Responses

Status: 200 - Respuesta de modelo 'KpiLive'.

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


trafficLiveKpiGetApiKey

Información completa de modelo 'KpiLive' relacionado con trafficStore que corresponde a parametro 'inPath' {trafficStoreId}. Acesso con apiKey


/stateless/live/kpi/{trafficStoreId}

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/stateless/live/kpi/{trafficStoreId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.StatelessApi;

import java.io.File;
import java.util.*;

public class StatelessApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        StatelessApi apiInstance = new StatelessApi();
        Integer trafficStoreId = 56; // Integer | ID de modelo 'TrafficStore' relacionado con el usuario que realiza la petición.
        try {
            KpiLive result = apiInstance.trafficLiveKpiGetApiKey(trafficStoreId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling StatelessApi#trafficLiveKpiGetApiKey");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.StatelessApi;

public class StatelessApiExample {

    public static void main(String[] args) {
        StatelessApi apiInstance = new StatelessApi();
        Integer trafficStoreId = 56; // Integer | ID de modelo 'TrafficStore' relacionado con el usuario que realiza la petición.
        try {
            KpiLive result = apiInstance.trafficLiveKpiGetApiKey(trafficStoreId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling StatelessApi#trafficLiveKpiGetApiKey");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *trafficStoreId = 56; // ID de modelo 'TrafficStore' relacionado con el usuario que realiza la petición.

StatelessApi *apiInstance = [[StatelessApi alloc] init];

[apiInstance trafficLiveKpiGetApiKeyWith:trafficStoreId
              completionHandler: ^(KpiLive output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.StatelessApi()
var trafficStoreId = 56; // {{Integer}} ID de modelo 'TrafficStore' relacionado con el usuario que realiza la petición.

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.trafficLiveKpiGetApiKey(trafficStoreId, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class trafficLiveKpiGetApiKeyExample
    {
        public void main()
        {


            var apiInstance = new StatelessApi();
            var trafficStoreId = 56;  // Integer | ID de modelo 'TrafficStore' relacionado con el usuario que realiza la petición.

            try
            {
                KpiLive result = apiInstance.trafficLiveKpiGetApiKey(trafficStoreId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling StatelessApi.trafficLiveKpiGetApiKey: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiStatelessApi();
$trafficStoreId = 56; // Integer | ID de modelo 'TrafficStore' relacionado con el usuario que realiza la petición.

try {
    $result = $api_instance->trafficLiveKpiGetApiKey($trafficStoreId);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling StatelessApi->trafficLiveKpiGetApiKey: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::StatelessApi;


my $api_instance = WWW::SwaggerClient::StatelessApi->new();
my $trafficStoreId = 56; # Integer | ID de modelo 'TrafficStore' relacionado con el usuario que realiza la petición.

eval { 
    my $result = $api_instance->trafficLiveKpiGetApiKey(trafficStoreId => $trafficStoreId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling StatelessApi->trafficLiveKpiGetApiKey: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.StatelessApi()
trafficStoreId = 56 # Integer | ID de modelo 'TrafficStore' relacionado con el usuario que realiza la petición.

try: 
    api_response = api_instance.traffic_live_kpi_get_api_key(trafficStoreId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling StatelessApi->trafficLiveKpiGetApiKey: %s\n" % e)

Parameters

Path parameters
Name Description
trafficStoreId*
Integer
ID de modelo 'TrafficStore' relacionado con el usuario que realiza la petición.
Required

Responses

Status: 200 - Respuesta de modelo 'KpiLive'.

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


Tizen

tizenGet

Punto de entrada para los Tizen, que solicitan el fichero de información sssp_config.xml o Nsign.wgt ({filename}) y que devuelve la versión que debería tener segun la licencia ({licenseTv})


tizen/{licenseTv}/{filename}

Usage and SDK Samples

curl -X GET\
"https://{env}.nsign.tvtizen/{licenseTv}/{filename}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.TizenApi;

import java.io.File;
import java.util.*;

public class TizenApiExample {

    public static void main(String[] args) {
        
        TizenApi apiInstance = new TizenApi();
        String licenseTv = licenseTv_example; // String | Licencia asignada durante la creación de la ficha del player.
        String filename = filename_example; // String | Ficheros requidos por el televisor: sssp_config.xml y Nsign.wgt.
        try {
            apiInstance.tizenGet(licenseTv, filename);
        } catch (ApiException e) {
            System.err.println("Exception when calling TizenApi#tizenGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.TizenApi;

public class TizenApiExample {

    public static void main(String[] args) {
        TizenApi apiInstance = new TizenApi();
        String licenseTv = licenseTv_example; // String | Licencia asignada durante la creación de la ficha del player.
        String filename = filename_example; // String | Ficheros requidos por el televisor: sssp_config.xml y Nsign.wgt.
        try {
            apiInstance.tizenGet(licenseTv, filename);
        } catch (ApiException e) {
            System.err.println("Exception when calling TizenApi#tizenGet");
            e.printStackTrace();
        }
    }
}
String *licenseTv = licenseTv_example; // Licencia asignada durante la creación de la ficha del player.
String *filename = filename_example; // Ficheros requidos por el televisor: sssp_config.xml y Nsign.wgt.

TizenApi *apiInstance = [[TizenApi alloc] init];

[apiInstance tizenGetWith:licenseTv
    filename:filename
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');

var api = new ApiPlataformaNsign.TizenApi()
var licenseTv = licenseTv_example; // {{String}} Licencia asignada durante la creación de la ficha del player.
var filename = filename_example; // {{String}} Ficheros requidos por el televisor: sssp_config.xml y Nsign.wgt.

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.tizenGet(licenseTv, filename, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class tizenGetExample
    {
        public void main()
        {

            var apiInstance = new TizenApi();
            var licenseTv = licenseTv_example;  // String | Licencia asignada durante la creación de la ficha del player.
            var filename = filename_example;  // String | Ficheros requidos por el televisor: sssp_config.xml y Nsign.wgt.

            try
            {
                apiInstance.tizenGet(licenseTv, filename);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling TizenApi.tizenGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiTizenApi();
$licenseTv = licenseTv_example; // String | Licencia asignada durante la creación de la ficha del player.
$filename = filename_example; // String | Ficheros requidos por el televisor: sssp_config.xml y Nsign.wgt.

try {
    $api_instance->tizenGet($licenseTv, $filename);
} catch (Exception $e) {
    echo 'Exception when calling TizenApi->tizenGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::TizenApi;

my $api_instance = WWW::SwaggerClient::TizenApi->new();
my $licenseTv = licenseTv_example; # String | Licencia asignada durante la creación de la ficha del player.
my $filename = filename_example; # String | Ficheros requidos por el televisor: sssp_config.xml y Nsign.wgt.

eval { 
    $api_instance->tizenGet(licenseTv => $licenseTv, filename => $filename);
};
if ($@) {
    warn "Exception when calling TizenApi->tizenGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# create an instance of the API class
api_instance = swagger_client.TizenApi()
licenseTv = licenseTv_example # String | Licencia asignada durante la creación de la ficha del player.
filename = filename_example # String | Ficheros requidos por el televisor: sssp_config.xml y Nsign.wgt.

try: 
    api_instance.tizen_get(licenseTv, filename)
except ApiException as e:
    print("Exception when calling TizenApi->tizenGet: %s\n" % e)

Parameters

Path parameters
Name Description
licenseTv*
String
Licencia asignada durante la creación de la ficha del player.
Required
filename*
String
Ficheros requidos por el televisor: sssp_config.xml y Nsign.wgt.
Required

Responses

Status: 200 - OK, no update required.

Status: 302 - Redirect to link in PlayerApk repository.

Status: 404 - No license {licenseTv} found


Traffic

deleteTrafficstoreToChildCustomer

Eliminar trafficStore que corresponde a parametro 'inPath' {trafficStoreId} de customer que corresponde a parametro 'inPath' {customerId}


/traffic/customer/{customerId}/store/{trafficStoreId}

Usage and SDK Samples

curl -X DELETE\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/traffic/customer/{customerId}/store/{trafficStoreId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.TrafficApi;

import java.io.File;
import java.util.*;

public class TrafficApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        TrafficApi apiInstance = new TrafficApi();
        Integer customerId = 56; // Integer |  ID de customer relacionado con el usuario que realiza la petición.
        Integer trafficStoreId = 56; // Integer | ID de TrafficStore relacionado con el usuario que realiza la petición.
        try {
            apiInstance.deleteTrafficstoreToChildCustomer(customerId, trafficStoreId);
        } catch (ApiException e) {
            System.err.println("Exception when calling TrafficApi#deleteTrafficstoreToChildCustomer");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.TrafficApi;

public class TrafficApiExample {

    public static void main(String[] args) {
        TrafficApi apiInstance = new TrafficApi();
        Integer customerId = 56; // Integer |  ID de customer relacionado con el usuario que realiza la petición.
        Integer trafficStoreId = 56; // Integer | ID de TrafficStore relacionado con el usuario que realiza la petición.
        try {
            apiInstance.deleteTrafficstoreToChildCustomer(customerId, trafficStoreId);
        } catch (ApiException e) {
            System.err.println("Exception when calling TrafficApi#deleteTrafficstoreToChildCustomer");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *customerId = 56; //  ID de customer relacionado con el usuario que realiza la petición.
Integer *trafficStoreId = 56; // ID de TrafficStore relacionado con el usuario que realiza la petición.

TrafficApi *apiInstance = [[TrafficApi alloc] init];

[apiInstance deleteTrafficstoreToChildCustomerWith:customerId
    trafficStoreId:trafficStoreId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.TrafficApi()
var customerId = 56; // {{Integer}}  ID de customer relacionado con el usuario que realiza la petición.
var trafficStoreId = 56; // {{Integer}} ID de TrafficStore relacionado con el usuario que realiza la petición.

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.deleteTrafficstoreToChildCustomer(customerId, trafficStoreId, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class deleteTrafficstoreToChildCustomerExample
    {
        public void main()
        {


            var apiInstance = new TrafficApi();
            var customerId = 56;  // Integer |  ID de customer relacionado con el usuario que realiza la petición.
            var trafficStoreId = 56;  // Integer | ID de TrafficStore relacionado con el usuario que realiza la petición.

            try
            {
                apiInstance.deleteTrafficstoreToChildCustomer(customerId, trafficStoreId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling TrafficApi.deleteTrafficstoreToChildCustomer: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiTrafficApi();
$customerId = 56; // Integer |  ID de customer relacionado con el usuario que realiza la petición.
$trafficStoreId = 56; // Integer | ID de TrafficStore relacionado con el usuario que realiza la petición.

try {
    $api_instance->deleteTrafficstoreToChildCustomer($customerId, $trafficStoreId);
} catch (Exception $e) {
    echo 'Exception when calling TrafficApi->deleteTrafficstoreToChildCustomer: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::TrafficApi;


my $api_instance = WWW::SwaggerClient::TrafficApi->new();
my $customerId = 56; # Integer |  ID de customer relacionado con el usuario que realiza la petición.
my $trafficStoreId = 56; # Integer | ID de TrafficStore relacionado con el usuario que realiza la petición.

eval { 
    $api_instance->deleteTrafficstoreToChildCustomer(customerId => $customerId, trafficStoreId => $trafficStoreId);
};
if ($@) {
    warn "Exception when calling TrafficApi->deleteTrafficstoreToChildCustomer: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.TrafficApi()
customerId = 56 # Integer |  ID de customer relacionado con el usuario que realiza la petición.
trafficStoreId = 56 # Integer | ID de TrafficStore relacionado con el usuario que realiza la petición.

try: 
    api_instance.delete_trafficstore_to_child_customer(customerId, trafficStoreId)
except ApiException as e:
    print("Exception when calling TrafficApi->deleteTrafficstoreToChildCustomer: %s\n" % e)

Parameters

Path parameters
Name Description
customerId*
Integer
ID de customer relacionado con el usuario que realiza la petición.
Required
trafficStoreId*
Integer
ID de TrafficStore relacionado con el usuario que realiza la petición.
Required

Responses

Status: 200 - Confirmación de acción.

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


putTrafficstoreToChildCustomer

Añadir trafficStore que corresponde a parametro 'inPath' {trafficStoreId} para customer que corresponde a parametro 'inPath' {customerId}


/traffic/customer/{customerId}/store/{trafficStoreId}

Usage and SDK Samples

curl -X PUT\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/traffic/customer/{customerId}/store/{trafficStoreId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.TrafficApi;

import java.io.File;
import java.util.*;

public class TrafficApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        TrafficApi apiInstance = new TrafficApi();
        Integer customerId = 56; // Integer |  ID de customer relacionado con el usuario que realiza la petición.
        Integer trafficStoreId = 56; // Integer | ID de TrafficStore relacionado con el usuario que realiza la petición.
        try {
            TrafficStore result = apiInstance.putTrafficstoreToChildCustomer(customerId, trafficStoreId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling TrafficApi#putTrafficstoreToChildCustomer");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.TrafficApi;

public class TrafficApiExample {

    public static void main(String[] args) {
        TrafficApi apiInstance = new TrafficApi();
        Integer customerId = 56; // Integer |  ID de customer relacionado con el usuario que realiza la petición.
        Integer trafficStoreId = 56; // Integer | ID de TrafficStore relacionado con el usuario que realiza la petición.
        try {
            TrafficStore result = apiInstance.putTrafficstoreToChildCustomer(customerId, trafficStoreId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling TrafficApi#putTrafficstoreToChildCustomer");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *customerId = 56; //  ID de customer relacionado con el usuario que realiza la petición.
Integer *trafficStoreId = 56; // ID de TrafficStore relacionado con el usuario que realiza la petición.

TrafficApi *apiInstance = [[TrafficApi alloc] init];

[apiInstance putTrafficstoreToChildCustomerWith:customerId
    trafficStoreId:trafficStoreId
              completionHandler: ^(TrafficStore output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.TrafficApi()
var customerId = 56; // {{Integer}}  ID de customer relacionado con el usuario que realiza la petición.
var trafficStoreId = 56; // {{Integer}} ID de TrafficStore relacionado con el usuario que realiza la petición.

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.putTrafficstoreToChildCustomer(customerId, trafficStoreId, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class putTrafficstoreToChildCustomerExample
    {
        public void main()
        {


            var apiInstance = new TrafficApi();
            var customerId = 56;  // Integer |  ID de customer relacionado con el usuario que realiza la petición.
            var trafficStoreId = 56;  // Integer | ID de TrafficStore relacionado con el usuario que realiza la petición.

            try
            {
                TrafficStore result = apiInstance.putTrafficstoreToChildCustomer(customerId, trafficStoreId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling TrafficApi.putTrafficstoreToChildCustomer: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiTrafficApi();
$customerId = 56; // Integer |  ID de customer relacionado con el usuario que realiza la petición.
$trafficStoreId = 56; // Integer | ID de TrafficStore relacionado con el usuario que realiza la petición.

try {
    $result = $api_instance->putTrafficstoreToChildCustomer($customerId, $trafficStoreId);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling TrafficApi->putTrafficstoreToChildCustomer: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::TrafficApi;


my $api_instance = WWW::SwaggerClient::TrafficApi->new();
my $customerId = 56; # Integer |  ID de customer relacionado con el usuario que realiza la petición.
my $trafficStoreId = 56; # Integer | ID de TrafficStore relacionado con el usuario que realiza la petición.

eval { 
    my $result = $api_instance->putTrafficstoreToChildCustomer(customerId => $customerId, trafficStoreId => $trafficStoreId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling TrafficApi->putTrafficstoreToChildCustomer: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.TrafficApi()
customerId = 56 # Integer |  ID de customer relacionado con el usuario que realiza la petición.
trafficStoreId = 56 # Integer | ID de TrafficStore relacionado con el usuario que realiza la petición.

try: 
    api_response = api_instance.put_trafficstore_to_child_customer(customerId, trafficStoreId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling TrafficApi->putTrafficstoreToChildCustomer: %s\n" % e)

Parameters

Path parameters
Name Description
customerId*
Integer
ID de customer relacionado con el usuario que realiza la petición.
Required
trafficStoreId*
Integer
ID de TrafficStore relacionado con el usuario que realiza la petición.
Required

Responses

Status: 200 - Respuesta de modelo 'TrafficStore'.

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


trafficCapacityGet

Información completa de modelo 'KpiLive' relacionado con trafficStore que corresponde a parametro 'inPath' {trafficStoreId}.


/traffic/live/capacity/{trafficStoreId}

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/traffic/live/capacity/{trafficStoreId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.TrafficApi;

import java.io.File;
import java.util.*;

public class TrafficApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        TrafficApi apiInstance = new TrafficApi();
        Integer trafficStoreId = 56; // Integer | ID de modelo 'TrafficStore' relacionado con el usuario que realiza la petición.
        try {
            KpiLive result = apiInstance.trafficCapacityGet(trafficStoreId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling TrafficApi#trafficCapacityGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.TrafficApi;

public class TrafficApiExample {

    public static void main(String[] args) {
        TrafficApi apiInstance = new TrafficApi();
        Integer trafficStoreId = 56; // Integer | ID de modelo 'TrafficStore' relacionado con el usuario que realiza la petición.
        try {
            KpiLive result = apiInstance.trafficCapacityGet(trafficStoreId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling TrafficApi#trafficCapacityGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *trafficStoreId = 56; // ID de modelo 'TrafficStore' relacionado con el usuario que realiza la petición.

TrafficApi *apiInstance = [[TrafficApi alloc] init];

[apiInstance trafficCapacityGetWith:trafficStoreId
              completionHandler: ^(KpiLive output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.TrafficApi()
var trafficStoreId = 56; // {{Integer}} ID de modelo 'TrafficStore' relacionado con el usuario que realiza la petición.

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.trafficCapacityGet(trafficStoreId, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class trafficCapacityGetExample
    {
        public void main()
        {


            var apiInstance = new TrafficApi();
            var trafficStoreId = 56;  // Integer | ID de modelo 'TrafficStore' relacionado con el usuario que realiza la petición.

            try
            {
                KpiLive result = apiInstance.trafficCapacityGet(trafficStoreId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling TrafficApi.trafficCapacityGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiTrafficApi();
$trafficStoreId = 56; // Integer | ID de modelo 'TrafficStore' relacionado con el usuario que realiza la petición.

try {
    $result = $api_instance->trafficCapacityGet($trafficStoreId);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling TrafficApi->trafficCapacityGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::TrafficApi;


my $api_instance = WWW::SwaggerClient::TrafficApi->new();
my $trafficStoreId = 56; # Integer | ID de modelo 'TrafficStore' relacionado con el usuario que realiza la petición.

eval { 
    my $result = $api_instance->trafficCapacityGet(trafficStoreId => $trafficStoreId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling TrafficApi->trafficCapacityGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.TrafficApi()
trafficStoreId = 56 # Integer | ID de modelo 'TrafficStore' relacionado con el usuario que realiza la petición.

try: 
    api_response = api_instance.traffic_capacity_get(trafficStoreId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling TrafficApi->trafficCapacityGet: %s\n" % e)

Parameters

Path parameters
Name Description
trafficStoreId*
Integer
ID de modelo 'TrafficStore' relacionado con el usuario que realiza la petición.
Required

Responses

Status: 200 - Respuesta de modelo 'KpiLive'.

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


trafficDetailsGet

Información completa de modelo 'DetailStore' relacionado con trafficStore que corresponde a parametro 'inPath' {trafficStoreId}.


/traffic/details/capacity/{trafficStoreId}

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/traffic/details/capacity/{trafficStoreId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.TrafficApi;

import java.io.File;
import java.util.*;

public class TrafficApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        TrafficApi apiInstance = new TrafficApi();
        Integer trafficStoreId = 56; // Integer | ID de modelo 'TrafficStore' relacionado con el usuario que realiza la petición.
        try {
            DetailStore result = apiInstance.trafficDetailsGet(trafficStoreId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling TrafficApi#trafficDetailsGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.TrafficApi;

public class TrafficApiExample {

    public static void main(String[] args) {
        TrafficApi apiInstance = new TrafficApi();
        Integer trafficStoreId = 56; // Integer | ID de modelo 'TrafficStore' relacionado con el usuario que realiza la petición.
        try {
            DetailStore result = apiInstance.trafficDetailsGet(trafficStoreId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling TrafficApi#trafficDetailsGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *trafficStoreId = 56; // ID de modelo 'TrafficStore' relacionado con el usuario que realiza la petición.

TrafficApi *apiInstance = [[TrafficApi alloc] init];

[apiInstance trafficDetailsGetWith:trafficStoreId
              completionHandler: ^(DetailStore output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.TrafficApi()
var trafficStoreId = 56; // {{Integer}} ID de modelo 'TrafficStore' relacionado con el usuario que realiza la petición.

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.trafficDetailsGet(trafficStoreId, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class trafficDetailsGetExample
    {
        public void main()
        {


            var apiInstance = new TrafficApi();
            var trafficStoreId = 56;  // Integer | ID de modelo 'TrafficStore' relacionado con el usuario que realiza la petición.

            try
            {
                DetailStore result = apiInstance.trafficDetailsGet(trafficStoreId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling TrafficApi.trafficDetailsGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiTrafficApi();
$trafficStoreId = 56; // Integer | ID de modelo 'TrafficStore' relacionado con el usuario que realiza la petición.

try {
    $result = $api_instance->trafficDetailsGet($trafficStoreId);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling TrafficApi->trafficDetailsGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::TrafficApi;


my $api_instance = WWW::SwaggerClient::TrafficApi->new();
my $trafficStoreId = 56; # Integer | ID de modelo 'TrafficStore' relacionado con el usuario que realiza la petición.

eval { 
    my $result = $api_instance->trafficDetailsGet(trafficStoreId => $trafficStoreId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling TrafficApi->trafficDetailsGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.TrafficApi()
trafficStoreId = 56 # Integer | ID de modelo 'TrafficStore' relacionado con el usuario que realiza la petición.

try: 
    api_response = api_instance.traffic_details_get(trafficStoreId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling TrafficApi->trafficDetailsGet: %s\n" % e)

Parameters

Path parameters
Name Description
trafficStoreId*
Integer
ID de modelo 'TrafficStore' relacionado con el usuario que realiza la petición.
Required

Responses

Status: 200 - Respuesta de modelo 'DetailStore'.

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


trafficKpisList

Listado de modelos 'TrafficKpi'.


/traffic/kpis

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/traffic/kpis"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.TrafficApi;

import java.io.File;
import java.util.*;

public class TrafficApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        TrafficApi apiInstance = new TrafficApi();
        try {
            array[TrafficKpi] result = apiInstance.trafficKpisList();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling TrafficApi#trafficKpisList");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.TrafficApi;

public class TrafficApiExample {

    public static void main(String[] args) {
        TrafficApi apiInstance = new TrafficApi();
        try {
            array[TrafficKpi] result = apiInstance.trafficKpisList();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling TrafficApi#trafficKpisList");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];

TrafficApi *apiInstance = [[TrafficApi alloc] init];

[apiInstance trafficKpisListWithCompletionHandler: 
              ^(array[TrafficKpi] output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.TrafficApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.trafficKpisList(callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class trafficKpisListExample
    {
        public void main()
        {


            var apiInstance = new TrafficApi();

            try
            {
                array[TrafficKpi] result = apiInstance.trafficKpisList();
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling TrafficApi.trafficKpisList: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiTrafficApi();

try {
    $result = $api_instance->trafficKpisList();
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling TrafficApi->trafficKpisList: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::TrafficApi;


my $api_instance = WWW::SwaggerClient::TrafficApi->new();

eval { 
    my $result = $api_instance->trafficKpisList();
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling TrafficApi->trafficKpisList: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.TrafficApi()

try: 
    api_response = api_instance.traffic_kpis_list()
    pprint(api_response)
except ApiException as e:
    print("Exception when calling TrafficApi->trafficKpisList: %s\n" % e)

Parameters

Responses

Status: 200 - Respuesta de listado de modelos 'TrafficKpi'.

Status: 401 - El token no es válido


trafficLiveKpiGet

Información completa de modelo 'KpiLive' relacionado con trafficStore que corresponde a parametro 'inPath' {trafficStoreId}.


/traffic/live/kpi/{trafficStoreId}

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/traffic/live/kpi/{trafficStoreId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.TrafficApi;

import java.io.File;
import java.util.*;

public class TrafficApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        TrafficApi apiInstance = new TrafficApi();
        Integer trafficStoreId = 56; // Integer | ID de modelo 'TrafficStore' relacionado con el usuario que realiza la petición.
        try {
            KpiLive result = apiInstance.trafficLiveKpiGet(trafficStoreId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling TrafficApi#trafficLiveKpiGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.TrafficApi;

public class TrafficApiExample {

    public static void main(String[] args) {
        TrafficApi apiInstance = new TrafficApi();
        Integer trafficStoreId = 56; // Integer | ID de modelo 'TrafficStore' relacionado con el usuario que realiza la petición.
        try {
            KpiLive result = apiInstance.trafficLiveKpiGet(trafficStoreId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling TrafficApi#trafficLiveKpiGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *trafficStoreId = 56; // ID de modelo 'TrafficStore' relacionado con el usuario que realiza la petición.

TrafficApi *apiInstance = [[TrafficApi alloc] init];

[apiInstance trafficLiveKpiGetWith:trafficStoreId
              completionHandler: ^(KpiLive output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.TrafficApi()
var trafficStoreId = 56; // {{Integer}} ID de modelo 'TrafficStore' relacionado con el usuario que realiza la petición.

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.trafficLiveKpiGet(trafficStoreId, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class trafficLiveKpiGetExample
    {
        public void main()
        {


            var apiInstance = new TrafficApi();
            var trafficStoreId = 56;  // Integer | ID de modelo 'TrafficStore' relacionado con el usuario que realiza la petición.

            try
            {
                KpiLive result = apiInstance.trafficLiveKpiGet(trafficStoreId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling TrafficApi.trafficLiveKpiGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiTrafficApi();
$trafficStoreId = 56; // Integer | ID de modelo 'TrafficStore' relacionado con el usuario que realiza la petición.

try {
    $result = $api_instance->trafficLiveKpiGet($trafficStoreId);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling TrafficApi->trafficLiveKpiGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::TrafficApi;


my $api_instance = WWW::SwaggerClient::TrafficApi->new();
my $trafficStoreId = 56; # Integer | ID de modelo 'TrafficStore' relacionado con el usuario que realiza la petición.

eval { 
    my $result = $api_instance->trafficLiveKpiGet(trafficStoreId => $trafficStoreId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling TrafficApi->trafficLiveKpiGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.TrafficApi()
trafficStoreId = 56 # Integer | ID de modelo 'TrafficStore' relacionado con el usuario que realiza la petición.

try: 
    api_response = api_instance.traffic_live_kpi_get(trafficStoreId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling TrafficApi->trafficLiveKpiGet: %s\n" % e)

Parameters

Path parameters
Name Description
trafficStoreId*
Integer
ID de modelo 'TrafficStore' relacionado con el usuario que realiza la petición.
Required

Responses

Status: 200 - Respuesta de modelo 'KpiLive'.

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


trafficStoresList

Listado de modelos 'CustomerStore' relacionados con el usuario que realiza la petición.


/traffic/stores

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/traffic/stores"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.TrafficApi;

import java.io.File;
import java.util.*;

public class TrafficApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        TrafficApi apiInstance = new TrafficApi();
        try {
            array[CustomerStore] result = apiInstance.trafficStoresList();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling TrafficApi#trafficStoresList");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.TrafficApi;

public class TrafficApiExample {

    public static void main(String[] args) {
        TrafficApi apiInstance = new TrafficApi();
        try {
            array[CustomerStore] result = apiInstance.trafficStoresList();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling TrafficApi#trafficStoresList");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];

TrafficApi *apiInstance = [[TrafficApi alloc] init];

[apiInstance trafficStoresListWithCompletionHandler: 
              ^(array[CustomerStore] output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.TrafficApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.trafficStoresList(callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class trafficStoresListExample
    {
        public void main()
        {


            var apiInstance = new TrafficApi();

            try
            {
                array[CustomerStore] result = apiInstance.trafficStoresList();
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling TrafficApi.trafficStoresList: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiTrafficApi();

try {
    $result = $api_instance->trafficStoresList();
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling TrafficApi->trafficStoresList: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::TrafficApi;


my $api_instance = WWW::SwaggerClient::TrafficApi->new();

eval { 
    my $result = $api_instance->trafficStoresList();
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling TrafficApi->trafficStoresList: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.TrafficApi()

try: 
    api_response = api_instance.traffic_stores_list()
    pprint(api_response)
except ApiException as e:
    print("Exception when calling TrafficApi->trafficStoresList: %s\n" % e)

Parameters

Responses

Status: 200 - Respuesta de listado de modelos 'CustomerStore'.

Status: 401 - El token no es válido


User

userCreate

Crear un nuevo modelo 'User' relacionado con el usuario que realiza la petición.


/user

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
-H "Content-Type: application/json"\
"https://{env}.nsign.tv/user"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.UserApi;

import java.io.File;
import java.util.*;

public class UserApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        UserApi apiInstance = new UserApi();
        UserPost body = ; // UserPost | 
        try {
            UserGet result = apiInstance.userCreate(body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#userCreate");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.UserApi;

public class UserApiExample {

    public static void main(String[] args) {
        UserApi apiInstance = new UserApi();
        UserPost body = ; // UserPost | 
        try {
            UserGet result = apiInstance.userCreate(body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#userCreate");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
UserPost *body = ; //  (optional)

UserApi *apiInstance = [[UserApi alloc] init];

[apiInstance userCreateWith:body
              completionHandler: ^(UserGet output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.UserApi()
var opts = { 
  'body':  // {{UserPost}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.userCreate(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class userCreateExample
    {
        public void main()
        {


            var apiInstance = new UserApi();
            var body = new UserPost(); // UserPost |  (optional) 

            try
            {
                UserGet result = apiInstance.userCreate(body);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling UserApi.userCreate: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiUserApi();
$body = ; // UserPost | 

try {
    $result = $api_instance->userCreate($body);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling UserApi->userCreate: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::UserApi;


my $api_instance = WWW::SwaggerClient::UserApi->new();
my $body = WWW::SwaggerClient::Object::UserPost->new(); # UserPost | 

eval { 
    my $result = $api_instance->userCreate(body => $body);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling UserApi->userCreate: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.UserApi()
body =  # UserPost |  (optional)

try: 
    api_response = api_instance.user_create(body=body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling UserApi->userCreate: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - Respuesta de modelo 'UserGet'

Status: 400 - Los parametros incompatibles

Status: 401 - El token no es válido


userDelete

Eliminar el modelo 'User' relacionado con el usuario que realiza la petición.


/user/{userId}

Usage and SDK Samples

curl -X DELETE\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/user/{userId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.UserApi;

import java.io.File;
import java.util.*;

public class UserApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        UserApi apiInstance = new UserApi();
        Integer userId = 56; // Integer | ID de modelo 'User' relacionado con el usuario que realiza la petición.
        try {
            apiInstance.userDelete(userId);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#userDelete");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.UserApi;

public class UserApiExample {

    public static void main(String[] args) {
        UserApi apiInstance = new UserApi();
        Integer userId = 56; // Integer | ID de modelo 'User' relacionado con el usuario que realiza la petición.
        try {
            apiInstance.userDelete(userId);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#userDelete");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *userId = 56; // ID de modelo 'User' relacionado con el usuario que realiza la petición.

UserApi *apiInstance = [[UserApi alloc] init];

[apiInstance userDeleteWith:userId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.UserApi()
var userId = 56; // {{Integer}} ID de modelo 'User' relacionado con el usuario que realiza la petición.

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.userDelete(userId, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class userDeleteExample
    {
        public void main()
        {


            var apiInstance = new UserApi();
            var userId = 56;  // Integer | ID de modelo 'User' relacionado con el usuario que realiza la petición.

            try
            {
                apiInstance.userDelete(userId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling UserApi.userDelete: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiUserApi();
$userId = 56; // Integer | ID de modelo 'User' relacionado con el usuario que realiza la petición.

try {
    $api_instance->userDelete($userId);
} catch (Exception $e) {
    echo 'Exception when calling UserApi->userDelete: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::UserApi;


my $api_instance = WWW::SwaggerClient::UserApi->new();
my $userId = 56; # Integer | ID de modelo 'User' relacionado con el usuario que realiza la petición.

eval { 
    $api_instance->userDelete(userId => $userId);
};
if ($@) {
    warn "Exception when calling UserApi->userDelete: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.UserApi()
userId = 56 # Integer | ID de modelo 'User' relacionado con el usuario que realiza la petición.

try: 
    api_instance.user_delete(userId)
except ApiException as e:
    print("Exception when calling UserApi->userDelete: %s\n" % e)

Parameters

Path parameters
Name Description
userId*
Integer
ID de modelo 'User' relacionado con el usuario que realiza la petición.
Required

Responses

Status: 200 - Confirmación de acción.

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


userEdit

Editar el modelo 'User' que corresponde a parametro 'inPath' {userId}.


/user/{userId}

Usage and SDK Samples

curl -X PUT\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
-H "Content-Type: application/json"\
"https://{env}.nsign.tv/user/{userId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.UserApi;

import java.io.File;
import java.util.*;

public class UserApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        UserApi apiInstance = new UserApi();
        Integer userId = 56; // Integer | ID de modelo 'User' relacionado con el usuario que realiza la petición.
        UserPost body = ; // UserPost | 
        try {
            UserGet result = apiInstance.userEdit(userId, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#userEdit");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.UserApi;

public class UserApiExample {

    public static void main(String[] args) {
        UserApi apiInstance = new UserApi();
        Integer userId = 56; // Integer | ID de modelo 'User' relacionado con el usuario que realiza la petición.
        UserPost body = ; // UserPost | 
        try {
            UserGet result = apiInstance.userEdit(userId, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#userEdit");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *userId = 56; // ID de modelo 'User' relacionado con el usuario que realiza la petición.
UserPost *body = ; //  (optional)

UserApi *apiInstance = [[UserApi alloc] init];

[apiInstance userEditWith:userId
    body:body
              completionHandler: ^(UserGet output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.UserApi()
var userId = 56; // {{Integer}} ID de modelo 'User' relacionado con el usuario que realiza la petición.
var opts = { 
  'body':  // {{UserPost}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.userEdit(userId, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class userEditExample
    {
        public void main()
        {


            var apiInstance = new UserApi();
            var userId = 56;  // Integer | ID de modelo 'User' relacionado con el usuario que realiza la petición.
            var body = new UserPost(); // UserPost |  (optional) 

            try
            {
                UserGet result = apiInstance.userEdit(userId, body);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling UserApi.userEdit: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiUserApi();
$userId = 56; // Integer | ID de modelo 'User' relacionado con el usuario que realiza la petición.
$body = ; // UserPost | 

try {
    $result = $api_instance->userEdit($userId, $body);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling UserApi->userEdit: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::UserApi;


my $api_instance = WWW::SwaggerClient::UserApi->new();
my $userId = 56; # Integer | ID de modelo 'User' relacionado con el usuario que realiza la petición.
my $body = WWW::SwaggerClient::Object::UserPost->new(); # UserPost | 

eval { 
    my $result = $api_instance->userEdit(userId => $userId, body => $body);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling UserApi->userEdit: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.UserApi()
userId = 56 # Integer | ID de modelo 'User' relacionado con el usuario que realiza la petición.
body =  # UserPost |  (optional)

try: 
    api_response = api_instance.user_edit(userId, body=body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling UserApi->userEdit: %s\n" % e)

Parameters

Path parameters
Name Description
userId*
Integer
ID de modelo 'User' relacionado con el usuario que realiza la petición.
Required
Body parameters
Name Description
body

Responses

Status: 200 - Respuesta de modelo 'UserGet'

Status: 400 - Los parametros incompatibles

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


userList

Listado de modelos 'UserGet' relacionados con el usuario que realiza la petición.


/users

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/users"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.UserApi;

import java.io.File;
import java.util.*;

public class UserApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        UserApi apiInstance = new UserApi();
        try {
            array[UserGet] result = apiInstance.userList();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#userList");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.UserApi;

public class UserApiExample {

    public static void main(String[] args) {
        UserApi apiInstance = new UserApi();
        try {
            array[UserGet] result = apiInstance.userList();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#userList");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];

UserApi *apiInstance = [[UserApi alloc] init];

[apiInstance userListWithCompletionHandler: 
              ^(array[UserGet] output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.UserApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.userList(callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class userListExample
    {
        public void main()
        {


            var apiInstance = new UserApi();

            try
            {
                array[UserGet] result = apiInstance.userList();
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling UserApi.userList: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiUserApi();

try {
    $result = $api_instance->userList();
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling UserApi->userList: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::UserApi;


my $api_instance = WWW::SwaggerClient::UserApi->new();

eval { 
    my $result = $api_instance->userList();
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling UserApi->userList: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.UserApi()

try: 
    api_response = api_instance.user_list()
    pprint(api_response)
except ApiException as e:
    print("Exception when calling UserApi->userList: %s\n" % e)

Parameters

Responses

Status: 200 - Listado de usuarios. Modelo 'UserGet'

Status: 401 - El token no es válido


userProfile

La información completa de usuario que realiza la petición.


/user

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/user"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.UserApi;

import java.io.File;
import java.util.*;

public class UserApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        UserApi apiInstance = new UserApi();
        try {
            UserGet result = apiInstance.userProfile();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#userProfile");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.UserApi;

public class UserApiExample {

    public static void main(String[] args) {
        UserApi apiInstance = new UserApi();
        try {
            UserGet result = apiInstance.userProfile();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#userProfile");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];

UserApi *apiInstance = [[UserApi alloc] init];

[apiInstance userProfileWithCompletionHandler: 
              ^(UserGet output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.UserApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.userProfile(callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class userProfileExample
    {
        public void main()
        {


            var apiInstance = new UserApi();

            try
            {
                UserGet result = apiInstance.userProfile();
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling UserApi.userProfile: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiUserApi();

try {
    $result = $api_instance->userProfile();
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling UserApi->userProfile: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::UserApi;


my $api_instance = WWW::SwaggerClient::UserApi->new();

eval { 
    my $result = $api_instance->userProfile();
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling UserApi->userProfile: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.UserApi()

try: 
    api_response = api_instance.user_profile()
    pprint(api_response)
except ApiException as e:
    print("Exception when calling UserApi->userProfile: %s\n" % e)

Parameters

Responses

Status: 200 - Respuesta modelo 'UserGet'

Status: 401 - El token no es válido


userRecovery

Recuperación de la contraseña de usuario.


/user/recovery

Usage and SDK Samples

curl -X POST\
-H "Content-Type: application/json"\
"https://{env}.nsign.tv/user/recovery"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.UserApi;

import java.io.File;
import java.util.*;

public class UserApiExample {

    public static void main(String[] args) {
        
        UserApi apiInstance = new UserApi();
        User_recovery_body body = ; // User_recovery_body | 
        try {
            apiInstance.userRecovery(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#userRecovery");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.UserApi;

public class UserApiExample {

    public static void main(String[] args) {
        UserApi apiInstance = new UserApi();
        User_recovery_body body = ; // User_recovery_body | 
        try {
            apiInstance.userRecovery(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#userRecovery");
            e.printStackTrace();
        }
    }
}
User_recovery_body *body = ; //  (optional)

UserApi *apiInstance = [[UserApi alloc] init];

[apiInstance userRecoveryWith:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');

var api = new ApiPlataformaNsign.UserApi()
var opts = { 
  'body':  // {{User_recovery_body}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.userRecovery(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class userRecoveryExample
    {
        public void main()
        {

            var apiInstance = new UserApi();
            var body = new User_recovery_body(); // User_recovery_body |  (optional) 

            try
            {
                apiInstance.userRecovery(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling UserApi.userRecovery: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiUserApi();
$body = ; // User_recovery_body | 

try {
    $api_instance->userRecovery($body);
} catch (Exception $e) {
    echo 'Exception when calling UserApi->userRecovery: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::UserApi;

my $api_instance = WWW::SwaggerClient::UserApi->new();
my $body = WWW::SwaggerClient::Object::User_recovery_body->new(); # User_recovery_body | 

eval { 
    $api_instance->userRecovery(body => $body);
};
if ($@) {
    warn "Exception when calling UserApi->userRecovery: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# create an instance of the API class
api_instance = swagger_client.UserApi()
body =  # User_recovery_body |  (optional)

try: 
    api_instance.user_recovery(body=body)
except ApiException as e:
    print("Exception when calling UserApi->userRecovery: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - Confirmación de acción.

Status: 400 - Los parametros incompatibles


UserChild

userCreateChild

Crear un nuevo modelo 'ResourceGet' para customer que corresponde a parametro 'inPath' {customerId}


/user/customer/{customerId}

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
-H "Content-Type: application/json"\
"https://{env}.nsign.tv/user/customer/{customerId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.UserChildApi;

import java.io.File;
import java.util.*;

public class UserChildApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        UserChildApi apiInstance = new UserChildApi();
        Integer customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
        UserPost body = ; // UserPost | 
        try {
            UserGet result = apiInstance.userCreateChild(customerId, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserChildApi#userCreateChild");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.UserChildApi;

public class UserChildApiExample {

    public static void main(String[] args) {
        UserChildApi apiInstance = new UserChildApi();
        Integer customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
        UserPost body = ; // UserPost | 
        try {
            UserGet result = apiInstance.userCreateChild(customerId, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserChildApi#userCreateChild");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *customerId = 56; // ID de customer relacionado con el usuario que realiza la petición.
UserPost *body = ; //  (optional)

UserChildApi *apiInstance = [[UserChildApi alloc] init];

[apiInstance userCreateChildWith:customerId
    body:body
              completionHandler: ^(UserGet output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.UserChildApi()
var customerId = 56; // {{Integer}} ID de customer relacionado con el usuario que realiza la petición.
var opts = { 
  'body':  // {{UserPost}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.userCreateChild(customerId, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class userCreateChildExample
    {
        public void main()
        {


            var apiInstance = new UserChildApi();
            var customerId = 56;  // Integer | ID de customer relacionado con el usuario que realiza la petición.
            var body = new UserPost(); // UserPost |  (optional) 

            try
            {
                UserGet result = apiInstance.userCreateChild(customerId, body);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling UserChildApi.userCreateChild: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiUserChildApi();
$customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
$body = ; // UserPost | 

try {
    $result = $api_instance->userCreateChild($customerId, $body);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling UserChildApi->userCreateChild: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::UserChildApi;


my $api_instance = WWW::SwaggerClient::UserChildApi->new();
my $customerId = 56; # Integer | ID de customer relacionado con el usuario que realiza la petición.
my $body = WWW::SwaggerClient::Object::UserPost->new(); # UserPost | 

eval { 
    my $result = $api_instance->userCreateChild(customerId => $customerId, body => $body);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling UserChildApi->userCreateChild: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.UserChildApi()
customerId = 56 # Integer | ID de customer relacionado con el usuario que realiza la petición.
body =  # UserPost |  (optional)

try: 
    api_response = api_instance.user_create_child(customerId, body=body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling UserChildApi->userCreateChild: %s\n" % e)

Parameters

Path parameters
Name Description
customerId*
Integer
ID de customer relacionado con el usuario que realiza la petición.
Required
Body parameters
Name Description
body

Responses

Status: 200 - Respuesta de modelo 'UserGet'

Status: 400 - Los parametros incompatibles

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


userDeleteChild

Eliminar el modelo 'User' relacionado con customer que corresponde a parametro 'inPath' {customerId}


/user/{customerId}/{userId}

Usage and SDK Samples

curl -X DELETE\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/user/{customerId}/{userId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.UserChildApi;

import java.io.File;
import java.util.*;

public class UserChildApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        UserChildApi apiInstance = new UserChildApi();
        Integer customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
        Integer userId = 56; // Integer | ID de modelo 'User' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
        try {
            apiInstance.userDeleteChild(customerId, userId);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserChildApi#userDeleteChild");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.UserChildApi;

public class UserChildApiExample {

    public static void main(String[] args) {
        UserChildApi apiInstance = new UserChildApi();
        Integer customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
        Integer userId = 56; // Integer | ID de modelo 'User' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
        try {
            apiInstance.userDeleteChild(customerId, userId);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserChildApi#userDeleteChild");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *customerId = 56; // ID de customer relacionado con el usuario que realiza la petición.
Integer *userId = 56; // ID de modelo 'User' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.

UserChildApi *apiInstance = [[UserChildApi alloc] init];

[apiInstance userDeleteChildWith:customerId
    userId:userId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.UserChildApi()
var customerId = 56; // {{Integer}} ID de customer relacionado con el usuario que realiza la petición.
var userId = 56; // {{Integer}} ID de modelo 'User' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.userDeleteChild(customerId, userId, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class userDeleteChildExample
    {
        public void main()
        {


            var apiInstance = new UserChildApi();
            var customerId = 56;  // Integer | ID de customer relacionado con el usuario que realiza la petición.
            var userId = 56;  // Integer | ID de modelo 'User' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.

            try
            {
                apiInstance.userDeleteChild(customerId, userId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling UserChildApi.userDeleteChild: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiUserChildApi();
$customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
$userId = 56; // Integer | ID de modelo 'User' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.

try {
    $api_instance->userDeleteChild($customerId, $userId);
} catch (Exception $e) {
    echo 'Exception when calling UserChildApi->userDeleteChild: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::UserChildApi;


my $api_instance = WWW::SwaggerClient::UserChildApi->new();
my $customerId = 56; # Integer | ID de customer relacionado con el usuario que realiza la petición.
my $userId = 56; # Integer | ID de modelo 'User' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.

eval { 
    $api_instance->userDeleteChild(customerId => $customerId, userId => $userId);
};
if ($@) {
    warn "Exception when calling UserChildApi->userDeleteChild: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.UserChildApi()
customerId = 56 # Integer | ID de customer relacionado con el usuario que realiza la petición.
userId = 56 # Integer | ID de modelo 'User' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.

try: 
    api_instance.user_delete_child(customerId, userId)
except ApiException as e:
    print("Exception when calling UserChildApi->userDeleteChild: %s\n" % e)

Parameters

Path parameters
Name Description
customerId*
Integer
ID de customer relacionado con el usuario que realiza la petición.
Required
userId*
Integer
ID de modelo 'User' relacionado con el customer que corresponde a parametro 'inPath' {customerId}.
Required

Responses

Status: 200 - Confirmación de acción.

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


userEditChild

Editar el modelo 'User' relacionado con customer que corresponde a parametro 'inPath' {customerId}


/user/{customerId}/{userId}

Usage and SDK Samples

curl -X PUT\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
-H "Content-Type: application/json"\
"https://{env}.nsign.tv/user/{customerId}/{userId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.UserChildApi;

import java.io.File;
import java.util.*;

public class UserChildApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        UserChildApi apiInstance = new UserChildApi();
        Integer customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
        Integer userId = 56; // Integer | ID de modelo 'User' relacionado con el customer que corresponde a parametro 'inPath' {customerId}
        UserPost body = ; // UserPost | 
        try {
            UserGet result = apiInstance.userEditChild(customerId, userId, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserChildApi#userEditChild");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.UserChildApi;

public class UserChildApiExample {

    public static void main(String[] args) {
        UserChildApi apiInstance = new UserChildApi();
        Integer customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
        Integer userId = 56; // Integer | ID de modelo 'User' relacionado con el customer que corresponde a parametro 'inPath' {customerId}
        UserPost body = ; // UserPost | 
        try {
            UserGet result = apiInstance.userEditChild(customerId, userId, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserChildApi#userEditChild");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *customerId = 56; // ID de customer relacionado con el usuario que realiza la petición.
Integer *userId = 56; // ID de modelo 'User' relacionado con el customer que corresponde a parametro 'inPath' {customerId}
UserPost *body = ; //  (optional)

UserChildApi *apiInstance = [[UserChildApi alloc] init];

[apiInstance userEditChildWith:customerId
    userId:userId
    body:body
              completionHandler: ^(UserGet output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.UserChildApi()
var customerId = 56; // {{Integer}} ID de customer relacionado con el usuario que realiza la petición.
var userId = 56; // {{Integer}} ID de modelo 'User' relacionado con el customer que corresponde a parametro 'inPath' {customerId}
var opts = { 
  'body':  // {{UserPost}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.userEditChild(customerIduserId, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class userEditChildExample
    {
        public void main()
        {


            var apiInstance = new UserChildApi();
            var customerId = 56;  // Integer | ID de customer relacionado con el usuario que realiza la petición.
            var userId = 56;  // Integer | ID de modelo 'User' relacionado con el customer que corresponde a parametro 'inPath' {customerId}
            var body = new UserPost(); // UserPost |  (optional) 

            try
            {
                UserGet result = apiInstance.userEditChild(customerId, userId, body);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling UserChildApi.userEditChild: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiUserChildApi();
$customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición.
$userId = 56; // Integer | ID de modelo 'User' relacionado con el customer que corresponde a parametro 'inPath' {customerId}
$body = ; // UserPost | 

try {
    $result = $api_instance->userEditChild($customerId, $userId, $body);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling UserChildApi->userEditChild: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::UserChildApi;


my $api_instance = WWW::SwaggerClient::UserChildApi->new();
my $customerId = 56; # Integer | ID de customer relacionado con el usuario que realiza la petición.
my $userId = 56; # Integer | ID de modelo 'User' relacionado con el customer que corresponde a parametro 'inPath' {customerId}
my $body = WWW::SwaggerClient::Object::UserPost->new(); # UserPost | 

eval { 
    my $result = $api_instance->userEditChild(customerId => $customerId, userId => $userId, body => $body);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling UserChildApi->userEditChild: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.UserChildApi()
customerId = 56 # Integer | ID de customer relacionado con el usuario que realiza la petición.
userId = 56 # Integer | ID de modelo 'User' relacionado con el customer que corresponde a parametro 'inPath' {customerId}
body =  # UserPost |  (optional)

try: 
    api_response = api_instance.user_edit_child(customerId, userId, body=body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling UserChildApi->userEditChild: %s\n" % e)

Parameters

Path parameters
Name Description
customerId*
Integer
ID de customer relacionado con el usuario que realiza la petición.
Required
userId*
Integer
ID de modelo 'User' relacionado con el customer que corresponde a parametro 'inPath' {customerId}
Required
Body parameters
Name Description
body

Responses

Status: 200 - Modelo de usuario.

Status: 400 - Los parametros incompatibles

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado


userListChild

Listado de modelos 'UserGet' relacionados con el customer que corresponde a parametro 'inPath' {customerId}


/users/customer/{customerId}

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: application/json"\
"https://{env}.nsign.tv/users/customer/{customerId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.UserChildApi;

import java.io.File;
import java.util.*;

public class UserChildApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        UserChildApi apiInstance = new UserChildApi();
        Integer customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición
        try {
            array[UserGet] result = apiInstance.userListChild(customerId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserChildApi#userListChild");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.UserChildApi;

public class UserChildApiExample {

    public static void main(String[] args) {
        UserChildApi apiInstance = new UserChildApi();
        Integer customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición
        try {
            array[UserGet] result = apiInstance.userListChild(customerId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserChildApi#userListChild");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *customerId = 56; // ID de customer relacionado con el usuario que realiza la petición

UserChildApi *apiInstance = [[UserChildApi alloc] init];

[apiInstance userListChildWith:customerId
              completionHandler: ^(array[UserGet] output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiPlataformaNsign = require('api___plataforma_nsign');
var defaultClient = ApiPlataformaNsign.ApiClient.instance;


var api = new ApiPlataformaNsign.UserChildApi()
var customerId = 56; // {{Integer}} ID de customer relacionado con el usuario que realiza la petición

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.userListChild(customerId, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class userListChildExample
    {
        public void main()
        {


            var apiInstance = new UserChildApi();
            var customerId = 56;  // Integer | ID de customer relacionado con el usuario que realiza la petición

            try
            {
                array[UserGet] result = apiInstance.userListChild(customerId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling UserChildApi.userListChild: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiUserChildApi();
$customerId = 56; // Integer | ID de customer relacionado con el usuario que realiza la petición

try {
    $result = $api_instance->userListChild($customerId);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling UserChildApi->userListChild: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::UserChildApi;


my $api_instance = WWW::SwaggerClient::UserChildApi->new();
my $customerId = 56; # Integer | ID de customer relacionado con el usuario que realiza la petición

eval { 
    my $result = $api_instance->userListChild(customerId => $customerId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling UserChildApi->userListChild: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.UserChildApi()
customerId = 56 # Integer | ID de customer relacionado con el usuario que realiza la petición

try: 
    api_response = api_instance.user_list_child(customerId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling UserChildApi->userListChild: %s\n" % e)

Parameters

Path parameters
Name Description
customerId*
Integer
ID de customer relacionado con el usuario que realiza la petición
Required

Responses

Status: 200 - Respuesta de listado de modelos 'UserGet'

Status: 400 - Los parametros incompatibles

Status: 401 - El token no es válido

Status: 403 - La acción no permitida.

Status: 404 - El modelo no encontrado