loginAppAcc
Login App Account
/projects/{projectid}/app-accounts/authentication/login
Usage and SDK Samples
curl -X POST -H "apieco-key: [[apiKey]]" "https://api.apieco.ir/paperlit/projects/{projectid}/app-accounts/authentication/login"import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.AppAccountApi;
import java.io.File;
import java.util.*;
public class AppAccountApiExample {
    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();
        
        // Configure API key authorization: apieco-key
        ApiKeyAuth apieco-key = (ApiKeyAuth) defaultClient.getAuthentication("apieco-key");
        apieco-key.setApiKey("YOUR API KEY");
        // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
        //apieco-key.setApiKeyPrefix("Token");
        AppAccountApi apiInstance = new AppAccountApi();
        String apiecoKey = apiecoKey_example; // String | 
        String projectid = projectid_example; // String | 
        Body_7 body = ; // Body_7 | 
        try {
            inline_response_200_3_data result = apiInstance.loginAppAcc(apiecoKey, projectid, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling AppAccountApi#loginAppAcc");
            e.printStackTrace();
        }
    }
}import io.swagger.client.api.AppAccountApi;
public class AppAccountApiExample {
    public static void main(String[] args) {
        AppAccountApi apiInstance = new AppAccountApi();
        String apiecoKey = apiecoKey_example; // String | 
        String projectid = projectid_example; // String | 
        Body_7 body = ; // Body_7 | 
        try {
            inline_response_200_3_data result = apiInstance.loginAppAcc(apiecoKey, projectid, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling AppAccountApi#loginAppAcc");
            e.printStackTrace();
        }
    }
}Configuration *apiConfig = [Configuration sharedConfig];
// Configure API key authorization: (authentication scheme: apieco-key)
[apiConfig setApiKey:@"YOUR_API_KEY" forApiKeyIdentifier:@"apieco-key"];
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//[apiConfig setApiKeyPrefix:@"Bearer" forApiKeyIdentifier:@"apieco-key"];
String *apiecoKey = apiecoKey_example; // 
String *projectid = projectid_example; // 
Body_7 *body = ; //  (optional)
AppAccountApi *apiInstance = [[AppAccountApi alloc] init];
[apiInstance loginAppAccWith:apiecoKey
    projectid:projectid
    body:body
              completionHandler: ^(inline_response_200_3_data output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var PaperlitApi_ = require('paperlit_api_');
var defaultClient = PaperlitApi_.ApiClient.instance;
// Configure API key authorization: apieco-key
var apieco-key = defaultClient.authentications['apieco-key'];
apieco-key.apiKey = "YOUR API KEY"
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//apieco-key.apiKeyPrefix['apieco-key'] = "Token"
var api = new PaperlitApi_.AppAccountApi()
var apiecoKey = apiecoKey_example; // {String} 
var projectid = projectid_example; // {String} 
var opts = { 
  'body':  // {Body_7} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.loginAppAcc(apiecoKey, projectid, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;
namespace Example
{
    public class loginAppAccExample
    {
        public void main()
        {
            
            // Configure API key authorization: apieco-key
            Configuration.Default.ApiKey.Add("apieco-key", "YOUR_API_KEY");
            // Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
            // Configuration.Default.ApiKeyPrefix.Add("apieco-key", "Bearer");
            var apiInstance = new AppAccountApi();
            var apiecoKey = apiecoKey_example;  // String | 
            var projectid = projectid_example;  // String | 
            var body = new Body_7(); // Body_7 |  (optional) 
            try
            {
                inline_response_200_3_data result = apiInstance.loginAppAcc(apiecoKey, projectid, body);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling AppAccountApi.loginAppAcc: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: apieco-key
Swagger\Client\Configuration::getDefaultConfiguration()->setApiKey('apieco-key', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Swagger\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('apieco-key', 'Bearer');
$api_instance = new Swagger\Client\Api\AppAccountApi();
$apiecoKey = apiecoKey_example; // String | 
$projectid = projectid_example; // String | 
$body = ; // Body_7 | 
try {
    $result = $api_instance->loginAppAcc($apiecoKey, $projectid, $body);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling AppAccountApi->loginAppAcc: ', $e->getMessage(), PHP_EOL;
}
?>use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::AppAccountApi;
# Configure API key authorization: apieco-key
$WWW::SwaggerClient::Configuration::api_key->{'apieco-key'} = 'YOUR_API_KEY';
# uncomment below to setup prefix (e.g. Bearer) for API key, if needed
#$WWW::SwaggerClient::Configuration::api_key_prefix->{'apieco-key'} = "Bearer";
my $api_instance = WWW::SwaggerClient::AppAccountApi->new();
my $apiecoKey = apiecoKey_example; # String | 
my $projectid = projectid_example; # String | 
my $body = WWW::SwaggerClient::Object::Body_7->new(); # Body_7 | 
eval { 
    my $result = $api_instance->loginAppAcc(apiecoKey => $apiecoKey, projectid => $projectid, body => $body);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling AppAccountApi->loginAppAcc: $@\n";
}from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint
# Configure API key authorization: apieco-key
swagger_client.configuration.api_key['apieco-key'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# swagger_client.configuration.api_key_prefix['apieco-key'] = 'Bearer'
# create an instance of the API class
api_instance = swagger_client.AppAccountApi()
apiecoKey = apiecoKey_example # String | 
projectid = projectid_example # String | 
body =  # Body_7 |  (optional)
try: 
    api_response = api_instance.login_app_acc(apiecoKey, projectid, body=body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling AppAccountApi->loginAppAcc: %s\n" % e)Parameters
| Name | Description | 
|---|---|
| projectid* | 
                
                    String
                
                     
                    Required
                 | 
| Name | Description | 
|---|---|
| apieco-key* | 
                
                    String
                
             
                    Required
                 | 
| Name | Description | 
|---|---|
| body |