Skip to content

Latest commit

 

History

History
60 lines (40 loc) · 2.04 KB

SoftconversionsApi.md

File metadata and controls

60 lines (40 loc) · 2.04 KB

Ageras\Api\SoftconversionsApi

All URIs are relative to https://api.ageras.com/v2

Method HTTP request Description
softconversionsCreate POST /softconversions

softconversionsCreate

\Ageras\Api\SoftConversionResource softconversionsCreate($soft_conversion_resource)

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure API key authorization: jwt
Ageras\Api\Configuration::getDefaultConfiguration()->setApiKey('token', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Ageras\Api\Configuration::getDefaultConfiguration()->setApiKeyPrefix('token', 'Bearer');
// Configure HTTP basic authorization: login
Ageras\Api\Configuration::getDefaultConfiguration()->setUsername('YOUR_USERNAME');
Ageras\Api\Configuration::getDefaultConfiguration()->setPassword('YOUR_PASSWORD');

$api_instance = new Ageras\Api\Api\SoftconversionsApi();
$soft_conversion_resource = new \Ageras\Api\SoftConversionResource(); // \Ageras\Api\SoftConversionResource | 

try {
    $result = $api_instance->softconversionsCreate($soft_conversion_resource);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling SoftconversionsApi->softconversionsCreate: ', $e->getMessage(), PHP_EOL;
}
?>

Parameters

Name Type Description Notes
soft_conversion_resource \Ageras\Api\SoftConversionResource

Return type

\Ageras\Api\SoftConversionResource

Authorization

jwt, login

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]