{"id":37163737,"url":"https://github.com/iota-uz/payme","last_synced_at":"2026-01-14T19:28:18.622Z","repository":{"id":294220968,"uuid":"985880293","full_name":"iota-uz/payme","owner":"iota-uz","description":"IOTA Go client for the Payme Merchant API — work with payments, transactions, and fiscalization in your Go applications. Generated with OpenAPI Generator. Includes support for API key auth, server configuration, and convenient utility helpers.","archived":false,"fork":false,"pushed_at":"2025-05-19T11:58:59.000Z","size":90,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-05-19T12:47:27.222Z","etag":null,"topics":["api-client","go","openapi","payme"],"latest_commit_sha":null,"homepage":"https://www.iota.uz","language":"Mustache","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/iota-uz.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-05-18T17:58:39.000Z","updated_at":"2025-05-19T11:57:22.000Z","dependencies_parsed_at":"2025-05-19T12:57:35.336Z","dependency_job_id":null,"html_url":"https://github.com/iota-uz/payme","commit_stats":null,"previous_names":["iota-uz/payme"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/iota-uz/payme","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iota-uz%2Fpayme","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iota-uz%2Fpayme/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iota-uz%2Fpayme/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iota-uz%2Fpayme/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/iota-uz","download_url":"https://codeload.github.com/iota-uz/payme/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iota-uz%2Fpayme/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28432610,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T18:57:19.464Z","status":"ssl_error","status_checked_at":"2026-01-14T18:52:48.501Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["api-client","go","openapi","payme"],"created_at":"2026-01-14T19:28:17.932Z","updated_at":"2026-01-14T19:28:18.612Z","avatar_url":"https://github.com/iota-uz.png","language":"Mustache","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Go API client for paymeapi\n\nAPI for managing Payme Merchant.\n\n## Overview\nThis API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project.  By using the [OpenAPI-spec](https://www.openapis.org/) from a remote server, you can easily generate an API client.\n\n- API version: 1.0.0\n- Package version: 1.0.0\n- Build date: 2025-05-21T23:49:33.393463700+05:00[Asia/Tashkent]\n- Generator version: 7.9.0\n- Build package: org.openapitools.codegen.languages.GoClientCodegen\nFor more information, please visit [https://www.iota.uz](https://www.iota.uz)\n\n## Installation\n\nInstall the following dependencies:\n\n```sh\ngo get github.com/stretchr/testify/assert\ngo get golang.org/x/net/context\n```\n\nPut the package under your project folder and add the following in import:\n\n```go\nimport paymeapi \"github.com/iota-uz/payme/paymeapi\"\n```\n\nTo use a proxy, set the environment variable `HTTP_PROXY`:\n\n```go\nos.Setenv(\"HTTP_PROXY\", \"http://proxy_name:proxy_port\")\n```\n\n## Configuration of Server URL\n\nDefault configuration comes with `Servers` field that contains server objects as defined in the OpenAPI specification.\n\n### Select Server Configuration\n\nFor using other server than the one defined on index 0 set context value `paymeapi.ContextServerIndex` of type `int`.\n\n```go\nctx := context.WithValue(context.Background(), paymeapi.ContextServerIndex, 1)\n```\n\n### Templated Server URL\n\nTemplated server URL is formatted using default variables from configuration or from context value `paymeapi.ContextServerVariables` of type `map[string]string`.\n\n```go\nctx := context.WithValue(context.Background(), paymeapi.ContextServerVariables, map[string]string{\n\t\"basePath\": \"v2\",\n})\n```\n\nNote, enum values are always validated and all unused variables are silently ignored.\n\n### URLs Configuration per Operation\n\nEach operation can use different server URL defined using `OperationServers` map in the `Configuration`.\nAn operation is uniquely identified by `\"{classname}Service.{nickname}\"` string.\nSimilar rules for overriding default operation server index and variables applies by using `paymeapi.ContextOperationServerIndices` and `paymeapi.ContextOperationServerVariables` context maps.\n\n```go\nctx := context.WithValue(context.Background(), paymeapi.ContextOperationServerIndices, map[string]int{\n\t\"{classname}Service.{nickname}\": 2,\n})\nctx = context.WithValue(context.Background(), paymeapi.ContextOperationServerVariables, map[string]map[string]string{\n\t\"{classname}Service.{nickname}\": {\n\t\t\"port\": \"8443\",\n\t},\n})\n```\n\n## Documentation for API Endpoints\n\nAll URIs are relative to *https://checkout.paycom.uz*\n\nClass | Method | HTTP request | Description\n------------ | ------------- | ------------- | -------------\n\n\n## Documentation For Models\n\n - [CancelTransactionRequest](docs/CancelTransactionRequest.md)\n - [CancelTransactionRequestWrapper](docs/CancelTransactionRequestWrapper.md)\n - [CancelTransactionResponse](docs/CancelTransactionResponse.md)\n - [CheckPerformTransactionRequest](docs/CheckPerformTransactionRequest.md)\n - [CheckPerformTransactionRequestWrapper](docs/CheckPerformTransactionRequestWrapper.md)\n - [CheckPerformTransactionResponse](docs/CheckPerformTransactionResponse.md)\n - [CheckTransactionRequest](docs/CheckTransactionRequest.md)\n - [CheckTransactionRequestWrapper](docs/CheckTransactionRequestWrapper.md)\n - [CheckTransactionResponse](docs/CheckTransactionResponse.md)\n - [CreateTransactionRequest](docs/CreateTransactionRequest.md)\n - [CreateTransactionRequestWrapper](docs/CreateTransactionRequestWrapper.md)\n - [CreateTransactionResponse](docs/CreateTransactionResponse.md)\n - [ErrorResponse](docs/ErrorResponse.md)\n - [ErrorResponseError](docs/ErrorResponseError.md)\n - [ErrorResponseErrorMessage](docs/ErrorResponseErrorMessage.md)\n - [FiscalData](docs/FiscalData.md)\n - [GetStatementRequest](docs/GetStatementRequest.md)\n - [GetStatementRequestWrapper](docs/GetStatementRequestWrapper.md)\n - [GetStatementResponse](docs/GetStatementResponse.md)\n - [JSONRPCErrorResponse](docs/JSONRPCErrorResponse.md)\n - [JSONRPCErrorResponseError](docs/JSONRPCErrorResponseError.md)\n - [JSONRPCErrorResponseErrorMessage](docs/JSONRPCErrorResponseErrorMessage.md)\n - [JSONRPCRequest](docs/JSONRPCRequest.md)\n - [JSONRPCSuccessResponse](docs/JSONRPCSuccessResponse.md)\n - [JSONRPCSuccessResponseResult](docs/JSONRPCSuccessResponseResult.md)\n - [PerformTransactionRequest](docs/PerformTransactionRequest.md)\n - [PerformTransactionRequestWrapper](docs/PerformTransactionRequestWrapper.md)\n - [PerformTransactionResponse](docs/PerformTransactionResponse.md)\n - [Receiver](docs/Receiver.md)\n - [SetFiscalDataErrorResponse](docs/SetFiscalDataErrorResponse.md)\n - [SetFiscalDataErrorResponseError](docs/SetFiscalDataErrorResponseError.md)\n - [SetFiscalDataRequest](docs/SetFiscalDataRequest.md)\n - [SetFiscalDataRequestWrapper](docs/SetFiscalDataRequestWrapper.md)\n - [SetFiscalDataResponse](docs/SetFiscalDataResponse.md)\n - [SetFiscalDataType](docs/SetFiscalDataType.md)\n - [StatementTransaction](docs/StatementTransaction.md)\n - [TransactionDetail](docs/TransactionDetail.md)\n - [TransactionDetailShipping](docs/TransactionDetailShipping.md)\n - [TransactionItem](docs/TransactionItem.md)\n\n\n## Documentation For Authorization\n\n\nAuthentication schemes defined for the API:\n### basicAuth\n\n- **Type**: HTTP basic authentication\n\nExample\n\n```go\nauth := context.WithValue(context.Background(), paymeapi.ContextBasicAuth, paymeapi.BasicAuth{\n\tUserName: \"username\",\n\tPassword: \"password\",\n})\nr, err := client.Service.Operation(auth, args)\n```\n\n\n## Documentation for Utility Methods\n\nDue to the fact that model structure members are all pointers, this package contains\na number of utility functions to easily obtain pointers to values of basic types.\nEach of these functions takes a value of the given basic type and returns a pointer to it:\n\n* `PtrBool`\n* `PtrInt`\n* `PtrInt32`\n* `PtrInt64`\n* `PtrFloat`\n* `PtrFloat32`\n* `PtrFloat64`\n* `PtrString`\n* `PtrTime`\n\n## Author\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fiota-uz%2Fpayme","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fiota-uz%2Fpayme","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fiota-uz%2Fpayme/lists"}