All URIs are relative to https://api.bombbomb.com/v2
Method | HTTP request | Description |
---|---|---|
GetClientContactInformation | GET /clients/contact/information | Get client contact information. |
GetUserProfileInfo | GET /users/profile/information | Get user profile information. |
void GetClientContactInformation ()
Get client contact information.
Get the client contact information of the user's account.
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;
namespace Example
{
public class GetClientContactInformationExample
{
public void main()
{
// Configure OAuth2 access token for authorization: BBOAuth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new UsersApi();
try
{
// Get client contact information.
apiInstance.GetClientContactInformation();
}
catch (Exception e)
{
Debug.Print("Exception when calling UsersApi.GetClientContactInformation: " + e.Message );
}
}
}
}
This endpoint does not need any parameter.
void (empty response body)
- Content-Type: application/x-www-form-urlencoded
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
void GetUserProfileInfo ()
Get user profile information.
Get the users profile information.
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;
namespace Example
{
public class GetUserProfileInfoExample
{
public void main()
{
// Configure OAuth2 access token for authorization: BBOAuth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new UsersApi();
try
{
// Get user profile information.
apiInstance.GetUserProfileInfo();
}
catch (Exception e)
{
Debug.Print("Exception when calling UsersApi.GetUserProfileInfo: " + e.Message );
}
}
}
}
This endpoint does not need any parameter.
void (empty response body)
- Content-Type: application/x-www-form-urlencoded
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]