flowhunt / flowhunt-php-sdk
FlowHunt API
Installs: 1 192
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Requires
- php: ^7.4 || ^8.0
- ext-curl: *
- ext-json: *
- ext-mbstring: *
- guzzlehttp/guzzle: ^7.3
- guzzlehttp/psr7: ^1.7 || ^2.0
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.5
- phpunit/phpunit: ^8.0 || ^9.0
README
FlowHunt API
Installation & Usage
Requirements
PHP 7.4 and later. Should also work with PHP 8.0.
Composer
To install the bindings via Composer, add the following to composer.json
:
{ "repositories": [ { "type": "vcs", "url": "https://github.com/GIT_USER_ID/flowhunt-php-sdk.git" } ], "require": { "GIT_USER_ID/flowhunt-php-sdk": "*@dev" } }
Then run composer install
Manual Installation
Download the files and include autoload.php
:
<?php require_once('/path/to/FlowHunt/vendor/autoload.php');
Getting Started
Please follow the installation procedure and then run the following:
<?php require_once(__DIR__ . '/vendor/autoload.php'); // Configure Bearer authorization: HTTPBearer $config = FlowHunt\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN'); $apiInstance = new FlowHunt\Api\ApiKeysApi( // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`. // This is optional, `GuzzleHttp\Client` will be used as default. new GuzzleHttp\Client(), $config ); $workspace_id = 'workspace_id_example'; // string $api_key_create_request = new \FlowHunt\Model\ApiKeyCreateRequest(); // \FlowHunt\Model\ApiKeyCreateRequest try { $result = $apiInstance->createApiKey($workspace_id, $api_key_create_request); print_r($result); } catch (Exception $e) { echo 'Exception when calling ApiKeysApi->createApiKey: ', $e->getMessage(), PHP_EOL; }
API Endpoints
All URIs are relative to http://localhost
Models
- AllFlowsSearchRequest
- ApiKeyCreateRequest
- ApiKeyResponse
- ApiKeySearchRequest
- ApiKeyUpdateRequest
- AppUrlInput
- AppUrlOutput
- BoolChar
- ChatbotCreateRequest
- ChatbotResponse
- ChatbotSearchRequest
- ChatbotStatus
- ChatbotUpdateRequest
- CheckoutCreateRequest
- ColumnDataType
- ColumnExecutorType
- Completed
- CreditBalanceResponse
- CreditDailyTransactionResponse
- CreditDailyTransactionSearchRequest
- CreditTransactionResponse
- CreditTransactionSearchRequest
- Data
- DocumentCategoryCreateRequest
- DocumentCategoryResponse
- DocumentCategorySearchRequest
- DocumentCategoryUpdateRequest
- DocumentContent
- DocumentContentResponse
- DocumentResponse
- DocumentSearchRequest
- DocumentSimilarityRequest
- DocumentSimilarityTaskRequest
- DocumentStatus
- DocumentType
- DocumentUpdateRequest
- FaqCreateRequest
- FaqResponse
- FaqSearchRequest
- FaqStatus
- FaqType
- FaqUpdateRequest
- FeatureResponse
- FlowCategoryCreateRequest
- FlowCategoryResponse
- FlowCategorySearchRequest
- FlowConfig
- FlowCreate
- FlowDetailResponse
- FlowEventActionType
- FlowInvokeRequest
- FlowLoadingIndicator
- FlowRequestChatRole
- FlowResponse
- FlowSearchRequest
- FlowSessionAttachmentResponse
- FlowSessionCreateFromFlowRequest
- FlowSessionCreateRequest
- FlowSessionEvent
- FlowSessionInvocationMessageResponse
- FlowSessionInvocationResponse
- FlowSessionInvokeRequest
- FlowSessionLoadingMetadata
- FlowSessionMessage
- FlowSessionMessageMetadata
- FlowSessionResponse
- FlowSessionStatus
- FlowSessionStreamRequest
- FlowSessionTaskResponseMetadata
- FlowSessionToolCallMetadata
- FlowSessionViewResponse
- FlowSessionViewSearchRequest
- FlowSessionViewUpdateRequest
- FlowType
- GridCellStatus
- GridColumnCreateRequest
- GridColumnResponse
- GridColumnSearchRequest
- GridColumnUpdateRequest
- GridCreateRequest
- GridResponse
- GridRowCreateRequest
- GridRowResponse
- GridRowSearchRequest
- GridRowUpdateRequest
- GridSearchRequest
- GridStatus
- GridUpdateRequest
- GrigCell
- HTTPValidationError
- Health
- ImageConvertRequest
- ImageOptimizeRequest
- IntegrationCategory
- IntegrationDetailResponse
- IntegrationFlowResponse
- IntegrationResponse
- IntegrationSearchRequest
- IntegrationSlug
- LoginUserRequest
- MessageType
- Metadata
- NewPasswordRequest
- OutputFormat
- PlanResponse
- PointerType
- PromptCategoryCreateRequest
- PromptCategoryResponse
- PromptCategorySearchRequest
- PromptCategoryUpdateRequest
- PromptCreateRequest
- PromptResponse
- PromptSearchRequest
- PromptUpdateRequest
- QuerySimilarityRequest
- QuerySimilarityTaskRequest
- RefreshTokenRequest
- RegisterUserRequest
- Role
- ScheduleCreateRequest
- ScheduleFrequency
- ScheduleResponse
- ScheduleSearchRequest
- ScheduleStatus
- ScheduleType
- ScheduleUpdateRequest
- ScheduleUrlDetailResponse
- ScheduleUrlResponse
- ScheduleUrlSearchRequest
- ScreenshotRequest
- ScreenshotResponse
- SecretCreateRequest
- SecretResponse
- SecretSearchRequest
- SecretUpdateRequest
- SerpClusterAddGroupRequest
- SerpClusterAddQueryRequest
- SerpClusterAddQueryRequests
- SerpClusterGroupResponse
- SerpClusterGroupSearchRequest
- SerpClusterQueryIntersectionsRequest
- SerpClusterQueryResponse
- SerpQueryRequest
- SerpSearchRequest
- SerpSearchRequests
- SerpVolumeRequest
- SlackChannelResponse
- SlackWorkspaceResponse
- SubscriptionPlan
- TagCreateRequest
- TagResponse
- TagSearchRequest
- TagUpdateRequest
- TaskOutput
- TaskResponse
- TaskStatus
- ThridPartyLoginRequest
- Token
- TransactionType
- TranscriptTaskRequest
- TriggerResponse
- TriggerType
- UrlScreenshotResponse
- UserDocumentStatus
- UserPlanResponse
- UserResponse
- UserTokenResponse
- ValidationError
- ValidationErrorLocInner
- VectorDocumentResponse
- VectorDocumentType
- VectorDocumentsTaskResponse
- WorkspaceCreateRequest
- WorkspaceResponse
- WorkspaceRole
- WorkspaceSearchRequest
- WorkspaceUpdateRequest
- WorkspaceUserCreateRequest
- WorkspaceUserResponse
- WorkspaceUserUpdateRequest
- WorkspaceUsersSearchRequest
- YoutubeContent
- YoutubeTranscriptRequest
- YoutubeTranscriptResponse
Authorization
Authentication schemes defined for the API:
sudo_api_key_header
- Type: API key
- API key parameter name: Sudo-Api-Key
- Location: HTTP header
APIKeyHeader
- Type: API key
- API key parameter name: Api-Key
- Location: HTTP header
HTTPBearer
- Type: Bearer authentication
Tests
To run the tests, use:
composer install vendor/bin/phpunit
Author
About this package
This PHP package is automatically generated by the OpenAPI Generator project:
- API version:
2.0.0
- Package version:
3.6.0
- Generator version:
7.9.0
- Package version:
- Build package:
org.openapitools.codegen.languages.PhpClientCodegen