> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://apidoc-v1.maniscloud.com/llms.txt.
> For full documentation content, see https://apidoc-v1.maniscloud.com/llms-full.txt.

# Get All

GET https://api/v1/transactions

Reference: https://apidoc-v1.maniscloud.com/manis-unified-api-v-1-0/transaction/get-all

## OpenAPI Specification

```yaml
openapi: 3.1.0
info:
  title: collection
  version: 1.0.0
paths:
  /api/v1/transactions:
    get:
      operationId: get-all
      summary: Get All
      tags:
        - subpackage_transaction
      parameters:
        - name: categories
          in: query
          required: false
          schema:
            type: string
        - name: pspIds
          in: query
          required: false
          schema:
            type: string
        - name: currencies
          in: query
          required: false
          schema:
            type: string
        - name: from
          in: query
          required: false
          schema:
            type: string
        - name: to
          in: query
          required: false
          schema:
            type: string
        - name: amountFrom
          in: query
          required: false
          schema:
            type: string
        - name: amountTo
          in: query
          required: false
          schema:
            type: string
        - name: text
          in: query
          required: false
          schema:
            type: string
        - name: page
          in: query
          required: false
          schema:
            type: string
        - name: pageSize
          in: query
          required: false
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Transaction_Get All_Response_200'
servers:
  - url: https:/
components:
  schemas:
    ApiV1TransactionsGetResponsesContentApplicationJsonSchemaDataItems:
      type: object
      properties:
        id:
          type: string
        pspId:
          type: string
        amount:
          type: integer
        status:
          type: string
        category:
          type: string
        currency:
          type: string
        createdAt:
          type: string
        createdBy:
          type: string
        requestId:
          type: string
        subStatus:
          type: string
        updatedAt:
          type: string
        updatedBy:
          type: string
        customerId:
          type: string
        webhookUrl:
          type: string
        description:
          type: string
        paymentType:
          type: string
        errorMessage:
          type: string
        customerEmail:
          type: string
        pspTransactionCategoryId:
          type: string
      required:
        - id
        - pspId
        - amount
        - status
        - category
        - currency
        - createdAt
        - createdBy
        - requestId
        - subStatus
        - updatedAt
        - updatedBy
        - customerId
        - webhookUrl
        - description
        - paymentType
        - errorMessage
        - customerEmail
        - pspTransactionCategoryId
      title: ApiV1TransactionsGetResponsesContentApplicationJsonSchemaDataItems
    Transaction_Get All_Response_200:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: >-
              #/components/schemas/ApiV1TransactionsGetResponsesContentApplicationJsonSchemaDataItems
        totalItem:
          type: integer
        totalPage:
          type: integer
        currentPage:
          type: integer
      required:
        - data
        - totalItem
        - totalPage
        - currentPage
      title: Transaction_Get All_Response_200

```

## SDK Code Examples

```python Transaction_Get All_example
import requests

url = "https://https/api/v1/transactions"

querystring = {"categories":"{{categories}}","pspIds":"{{pspIds}}","currencies":"{{currencies}}","from":"{{from}}","to":"{{to}}","amountFrom":"{{amountFrom}}","amountTo":"{{amountTo}}","text":"{{text}}","page":"{{page}}","pageSize":"{{pageSize}}"}

response = requests.get(url, params=querystring)

print(response.json())
```

```javascript Transaction_Get All_example
const url = 'https://https/api/v1/transactions?categories=%7B%7Bcategories%7D%7D&pspIds=%7B%7BpspIds%7D%7D&currencies=%7B%7Bcurrencies%7D%7D&from=%7B%7Bfrom%7D%7D&to=%7B%7Bto%7D%7D&amountFrom=%7B%7BamountFrom%7D%7D&amountTo=%7B%7BamountTo%7D%7D&text=%7B%7Btext%7D%7D&page=%7B%7Bpage%7D%7D&pageSize=%7B%7BpageSize%7D%7D';
const options = {method: 'GET'};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
```

```go Transaction_Get All_example
package main

import (
	"fmt"
	"net/http"
	"io"
)

func main() {

	url := "https://https/api/v1/transactions?categories=%7B%7Bcategories%7D%7D&pspIds=%7B%7BpspIds%7D%7D&currencies=%7B%7Bcurrencies%7D%7D&from=%7B%7Bfrom%7D%7D&to=%7B%7Bto%7D%7D&amountFrom=%7B%7BamountFrom%7D%7D&amountTo=%7B%7BamountTo%7D%7D&text=%7B%7Btext%7D%7D&page=%7B%7Bpage%7D%7D&pageSize=%7B%7BpageSize%7D%7D"

	req, _ := http.NewRequest("GET", url, nil)

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
```

```ruby Transaction_Get All_example
require 'uri'
require 'net/http'

url = URI("https://https/api/v1/transactions?categories=%7B%7Bcategories%7D%7D&pspIds=%7B%7BpspIds%7D%7D&currencies=%7B%7Bcurrencies%7D%7D&from=%7B%7Bfrom%7D%7D&to=%7B%7Bto%7D%7D&amountFrom=%7B%7BamountFrom%7D%7D&amountTo=%7B%7BamountTo%7D%7D&text=%7B%7Btext%7D%7D&page=%7B%7Bpage%7D%7D&pageSize=%7B%7BpageSize%7D%7D")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)

response = http.request(request)
puts response.read_body
```

```java Transaction_Get All_example
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.get("https://https/api/v1/transactions?categories=%7B%7Bcategories%7D%7D&pspIds=%7B%7BpspIds%7D%7D&currencies=%7B%7Bcurrencies%7D%7D&from=%7B%7Bfrom%7D%7D&to=%7B%7Bto%7D%7D&amountFrom=%7B%7BamountFrom%7D%7D&amountTo=%7B%7BamountTo%7D%7D&text=%7B%7Btext%7D%7D&page=%7B%7Bpage%7D%7D&pageSize=%7B%7BpageSize%7D%7D")
  .asString();
```

```php Transaction_Get All_example
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('GET', 'https://https/api/v1/transactions?categories=%7B%7Bcategories%7D%7D&pspIds=%7B%7BpspIds%7D%7D&currencies=%7B%7Bcurrencies%7D%7D&from=%7B%7Bfrom%7D%7D&to=%7B%7Bto%7D%7D&amountFrom=%7B%7BamountFrom%7D%7D&amountTo=%7B%7BamountTo%7D%7D&text=%7B%7Btext%7D%7D&page=%7B%7Bpage%7D%7D&pageSize=%7B%7BpageSize%7D%7D');

echo $response->getBody();
```

```csharp Transaction_Get All_example
using RestSharp;

var client = new RestClient("https://https/api/v1/transactions?categories=%7B%7Bcategories%7D%7D&pspIds=%7B%7BpspIds%7D%7D&currencies=%7B%7Bcurrencies%7D%7D&from=%7B%7Bfrom%7D%7D&to=%7B%7Bto%7D%7D&amountFrom=%7B%7BamountFrom%7D%7D&amountTo=%7B%7BamountTo%7D%7D&text=%7B%7Btext%7D%7D&page=%7B%7Bpage%7D%7D&pageSize=%7B%7BpageSize%7D%7D");
var request = new RestRequest(Method.GET);
IRestResponse response = client.Execute(request);
```

```swift Transaction_Get All_example
import Foundation

let request = NSMutableURLRequest(url: NSURL(string: "https://https/api/v1/transactions?categories=%7B%7Bcategories%7D%7D&pspIds=%7B%7BpspIds%7D%7D&currencies=%7B%7Bcurrencies%7D%7D&from=%7B%7Bfrom%7D%7D&to=%7B%7Bto%7D%7D&amountFrom=%7B%7BamountFrom%7D%7D&amountTo=%7B%7BamountTo%7D%7D&text=%7B%7Btext%7D%7D&page=%7B%7Bpage%7D%7D&pageSize=%7B%7BpageSize%7D%7D")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "GET"

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
  if (error != nil) {
    print(error as Any)
  } else {
    let httpResponse = response as? HTTPURLResponse
    print(httpResponse)
  }
})

dataTask.resume()
```