> 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 AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://apidoc-v1.maniscloud.com/_mcp/server.

# Get Payin transaction from PSP

GET https://api/v1/payins/psp/%7BpspId%7D

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

## Servers

- `https:/` (https://{url}, default)
- `https:/` (https://{devurl})

## Request

### Query parameters

- `page` (integer, optional)
- `pageSize` (integer, optional)
- `refresh` (boolean, optional)
- `realTimeSync` (boolean, optional)

## Response

### 200

OK

- `data` (list of object, required)
  - `pspId` (string, required)
  - `amount` (integer, required)
  - `createAt` (datetime, required)
  - `currency` (string, required)
  - `updatedAt` (datetime, required)
  - `customerId` (string, required)
  - `pspPayinId` (string, required)
  - `syncStatus` (object, required)
    - `state` (string, required)
  - `pspPaymentType` (string, required)
  - `manisPaymentType` (string, required)
  - `pspTransactionId` (string, required)
  - `manisTransactionId` (string, required)
  - `pspTransactionStatus` (string, required)
  - `manisTransactionStatus` (string, required)
  - `pspSpecificTransactionId` (string, required)
- `pspTxnPageInfo` (object, required)
  - `totalCount` (integer, required)
  - `failedCount` (integer, required)
  - `successCount` (integer, required)
  - `processingCount` (integer, required)

## Examples

### Get Payin transaction from Nium

**Response**

```json
{
  "data": [
    {
      "pspId": "nium",
      "amount": 2,
      "createAt": "2025-07-23T08:05:45.756Z",
      "currency": "SGD",
      "updatedAt": "2025-07-23T08:05:45.756Z",
      "customerId": "cus-01k0s6n7ad06fcqpwb7qrgxn02",
      "pspPayinId": "PR005282",
      "syncStatus": {
        "state": "SUCCESS"
      },
      "pspPaymentType": "string",
      "manisPaymentType": "VIRTUAL_ACCOUNT",
      "pspTransactionId": "string",
      "manisTransactionId": "txn-01k0v529e8bv9ecnyeakr42zp8",
      "pspTransactionStatus": "PENDING",
      "manisTransactionStatus": "PENDING",
      "pspSpecificTransactionId": "PR005282"
    },
    {
      "pspId": "nium",
      "amount": 2,
      "createAt": "2025-07-23T07:59:20.372Z",
      "currency": "USD",
      "updatedAt": "2025-07-23T07:59:20.372Z",
      "customerId": "cus-01k0s6n7ad06fcqpwb7qrgxn02",
      "pspPayinId": "PR005281",
      "syncStatus": {
        "state": "SUCCESS"
      },
      "pspPaymentType": "string",
      "manisPaymentType": "VIRTUAL_ACCOUNT",
      "pspTransactionId": "string",
      "manisTransactionId": "txn-01k0v4php25ztyvgrzrebsa20v",
      "pspTransactionStatus": "PENDING",
      "manisTransactionStatus": "PENDING",
      "pspSpecificTransactionId": "PR005281"
    }
  ],
  "pspTxnPageInfo": {
    "totalCount": 2,
    "failedCount": 0,
    "successCount": 2,
    "processingCount": 0
  }
}
```

**SDK Code**

```python Get Payin transaction from Nium
import requests

url = "https://https/api/v1/payins/psp/%7BpspId%7D"

querystring = {"page":"1","pageSize":"10","refresh":"true","realTimeSync":"true"}

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

print(response.json())
```

```javascript Get Payin transaction from Nium
const url = 'https://https/api/v1/payins/psp/%7BpspId%7D?page=1&pageSize=10&refresh=true&realTimeSync=true';
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 Get Payin transaction from Nium
package main

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

func main() {

	url := "https://https/api/v1/payins/psp/%7BpspId%7D?page=1&pageSize=10&refresh=true&realTimeSync=true"

	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 Get Payin transaction from Nium
require 'uri'
require 'net/http'

url = URI("https://https/api/v1/payins/psp/%7BpspId%7D?page=1&pageSize=10&refresh=true&realTimeSync=true")

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 Get Payin transaction from Nium
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.get("https://https/api/v1/payins/psp/%7BpspId%7D?page=1&pageSize=10&refresh=true&realTimeSync=true")
  .asString();
```

```php Get Payin transaction from Nium
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('GET', 'https://https/api/v1/payins/psp/%7BpspId%7D?page=1&pageSize=10&refresh=true&realTimeSync=true');

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

```csharp Get Payin transaction from Nium
using RestSharp;

var client = new RestClient("https://https/api/v1/payins/psp/%7BpspId%7D?page=1&pageSize=10&refresh=true&realTimeSync=true");
var request = new RestRequest(Method.GET);
IRestResponse response = client.Execute(request);
```

```swift Get Payin transaction from Nium
import Foundation

let request = NSMutableURLRequest(url: NSURL(string: "https://https/api/v1/payins/psp/%7BpspId%7D?page=1&pageSize=10&refresh=true&realTimeSync=true")! 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()
```

### Get Payin transaction from Finmo realtime sync

**Response**

```json
{
  "data": [
    {
      "pspId": "finmo",
      "amount": 1,
      "createAt": "2025-10-02T11:36:45Z",
      "currency": "IDR",
      "updatedAt": "2025-10-02T11:36:46Z",
      "customerId": "cus-01k6jbarcqgj0cje9ezgp2xj1z",
      "pspPayinId": "payin_a96d6e02b5094e68affc47d77f67382c",
      "syncStatus": {
        "state": "SUCCESS"
      },
      "pspPaymentType": "VA_PAYIN",
      "manisPaymentType": "VIRTUAL_ACCOUNT",
      "pspTransactionId": "txn_bb26aa23a2614b5f92d2ea368b86a304",
      "manisTransactionId": "txn-01k6jbbp2w0w8nx3yp6g57vjjn",
      "pspTransactionStatus": "COMPLETED",
      "manisTransactionStatus": "COMPLETED",
      "pspSpecificTransactionId": "payin_a96d6e02b5094e68affc47d77f67382c"
    },
    {
      "pspId": "finmo",
      "amount": 1,
      "createAt": "2025-10-02T11:35:39Z",
      "currency": "AUD",
      "updatedAt": "2025-10-02T11:35:41Z",
      "customerId": "cus-01k6jb95h22xv9y0hnfxnb41gb",
      "pspPayinId": "payin_bde38d54fbcc43b8a756cc2b7cf34c06",
      "syncStatus": {
        "state": "SUCCESS"
      },
      "pspPaymentType": "VA_PAYIN",
      "manisPaymentType": "VIRTUAL_ACCOUNT",
      "pspTransactionId": "txn_b79ecef6332b4b28a23a4b741b3d9c26",
      "manisTransactionId": "txn-01k6jb9p9ynsmgpfzck5m706mw",
      "pspTransactionStatus": "COMPLETED",
      "manisTransactionStatus": "COMPLETED",
      "pspSpecificTransactionId": "payin_bde38d54fbcc43b8a756cc2b7cf34c06"
    },
    {
      "pspId": "finmo",
      "amount": 1,
      "createAt": "2025-10-02T11:32:01Z",
      "currency": "SGD",
      "updatedAt": "2025-10-02T11:32:03Z",
      "customerId": "cus-01k6jar1tab361bv52ra46hmcj",
      "pspPayinId": "payin_559abd0c4df24b70ab91a32b5db4e845",
      "syncStatus": {
        "state": "SUCCESS"
      },
      "pspPaymentType": "VA_PAYIN",
      "manisPaymentType": "VIRTUAL_ACCOUNT",
      "pspTransactionId": "txn_1baa7eb6e53342e38c1657fa2c14049f",
      "manisTransactionId": "txn-01k6jb30v901gxt9s360q8n5my",
      "pspTransactionStatus": "COMPLETED",
      "manisTransactionStatus": "COMPLETED",
      "pspSpecificTransactionId": "payin_559abd0c4df24b70ab91a32b5db4e845"
    },
    {
      "pspId": "finmo",
      "amount": 20000000,
      "createAt": "2025-10-02T10:45:24Z",
      "currency": "SGD",
      "updatedAt": "2025-10-02T10:45:25Z",
      "customerId": "string",
      "pspPayinId": "payin_e14334f6f0a24bc6a916e8e93c5190a0",
      "syncStatus": {
        "state": "FAILED",
        "error": {
          "message": "No Manis transaction found or conflict detected for PSP payin ID: payin_e14334f6f0a24bc6a916e8e93c5190a0 and PSP transaction ID: txn_5a7b4d17eaa64349acf7104293f998ef"
        }
      },
      "pspPaymentType": "GCA_TOPUP",
      "manisPaymentType": "string",
      "pspTransactionId": "txn_5a7b4d17eaa64349acf7104293f998ef",
      "manisTransactionId": "string",
      "pspTransactionStatus": "COMPLETED",
      "manisTransactionStatus": "string",
      "pspSpecificTransactionId": "payin_e14334f6f0a24bc6a916e8e93c5190a0"
    },
    {
      "pspId": "finmo",
      "amount": 1,
      "createAt": "2025-10-02T08:43:19.582Z",
      "currency": "SGD",
      "updatedAt": "2025-10-02T08:43:19Z",
      "customerId": "cus-01k6j1dp2wyc8paz74gyhtvs52",
      "pspPayinId": "payin_563148de211a4a9b802283b55bbaa517",
      "syncStatus": {
        "state": "SUCCESS"
      },
      "pspPaymentType": "DIRECT_PAYIN",
      "manisPaymentType": "QR_CODE",
      "pspTransactionId": "string",
      "manisTransactionId": "txn-01k6j1e449gj1jb36rs78085x1",
      "pspTransactionStatus": "PENDING",
      "manisTransactionStatus": "EXCEPTION",
      "pspSpecificTransactionId": "payin_563148de211a4a9b802283b55bbaa517"
    },
    {
      "pspId": "finmo",
      "amount": 1,
      "createAt": "2025-10-02T06:33:01.908Z",
      "currency": "SGD",
      "updatedAt": "2025-10-02T06:33:02Z",
      "customerId": "cus-01k6hsg7n3dsmmebwekr01pgk3",
      "pspPayinId": "payin_45cd7a068702463a8d4c2c965117404a",
      "syncStatus": {
        "state": "SUCCESS"
      },
      "pspPaymentType": "DIRECT_PAYIN",
      "manisPaymentType": "QR_CODE",
      "pspTransactionId": "string",
      "manisTransactionId": "txn-01k6hszhttxy05ywf2fwn8b9ef",
      "pspTransactionStatus": "PENDING",
      "manisTransactionStatus": "EXCEPTION",
      "pspSpecificTransactionId": "payin_45cd7a068702463a8d4c2c965117404a"
    },
    {
      "pspId": "finmo",
      "amount": 1,
      "createAt": "2025-10-02T06:28:38.922Z",
      "currency": "SGD",
      "updatedAt": "2025-10-02T06:28:39Z",
      "customerId": "cus-01k6hsg7n3dsmmebwekr01pgk3",
      "pspPayinId": "payin_056358872ee64616b1268aebdfa71c34",
      "syncStatus": {
        "state": "PROCESSING"
      },
      "pspPaymentType": "DIRECT_PAYIN",
      "manisPaymentType": "QR_CODE",
      "pspTransactionId": "string",
      "manisTransactionId": "txn-01k6hsqh19tw0w97c05jfqx149",
      "pspTransactionStatus": "PENDING",
      "manisTransactionStatus": "EXCEPTION",
      "pspSpecificTransactionId": "payin_056358872ee64616b1268aebdfa71c34"
    },
    {
      "pspId": "finmo",
      "amount": 1,
      "createAt": "2025-10-01T11:47:07.750Z",
      "currency": "NZD",
      "updatedAt": "2025-10-01T11:47:23Z",
      "customerId": "cus-01k6fp86fp4npnrz7s6etj1mpn",
      "pspPayinId": "payin_50d154b31831429297a9318e24e49672",
      "syncStatus": {
        "state": "SUCCESS"
      },
      "pspPaymentType": "DIRECT_PAYIN",
      "manisPaymentType": "MASTER_GLOBAL_ACCOUNT",
      "pspTransactionId": "txn_bb80cda572714f5da8f0913eb30a3c19",
      "manisTransactionId": "txn-01k6fshz1pcbtd6pvsya68bqv9",
      "pspTransactionStatus": "COMPLETED",
      "manisTransactionStatus": "COMPLETED",
      "pspSpecificTransactionId": "payin_50d154b31831429297a9318e24e49672"
    },
    {
      "pspId": "finmo",
      "amount": 1,
      "createAt": "2025-10-01T11:46:39.565Z",
      "currency": "NZD",
      "updatedAt": "2025-10-01T11:46:39Z",
      "customerId": "cus-01k6fp86fp4npnrz7s6etj1mpn",
      "pspPayinId": "payin_2c61123f88ba4a8e91d0b8ba4b3c88d7",
      "syncStatus": {
        "state": "SUCCESS"
      },
      "pspPaymentType": "DIRECT_PAYIN",
      "manisPaymentType": "MASTER_GLOBAL_ACCOUNT",
      "pspTransactionId": "string",
      "manisTransactionId": "txn-01k6fsh3jzy9rswg16j5s68bas",
      "pspTransactionStatus": "PENDING",
      "manisTransactionStatus": "EXCEPTION",
      "pspSpecificTransactionId": "payin_2c61123f88ba4a8e91d0b8ba4b3c88d7"
    },
    {
      "pspId": "finmo",
      "amount": 1,
      "createAt": "2025-10-01T11:35:43.416Z",
      "currency": "SGD",
      "updatedAt": "2025-10-01T11:37:41Z",
      "customerId": "cus-01k6fp86fp4npnrz7s6etj1mpn",
      "pspPayinId": "payin_cea39cf53eba47f2ad6c28e08b83c2f4",
      "syncStatus": {
        "state": "SUCCESS"
      },
      "pspPaymentType": "DIRECT_PAYIN",
      "manisPaymentType": "QR_CODE",
      "pspTransactionId": "txn_9e3cd2812d9a4606852bab799f8c6462",
      "manisTransactionId": "txn-01k6frx2shmtpr2hbrntc744q9",
      "pspTransactionStatus": "COMPLETED",
      "manisTransactionStatus": "COMPLETED",
      "pspSpecificTransactionId": "payin_cea39cf53eba47f2ad6c28e08b83c2f4"
    }
  ],
  "pspTxnPageInfo": {
    "totalCount": 10,
    "failedCount": 1,
    "successCount": 8,
    "processingCount": 1
  }
}
```

**SDK Code**

```python Get Payin transaction from Finmo realtime sync
import requests

url = "https://https/api/v1/payins/psp/%7BpspId%7D"

querystring = {"page":"1","pageSize":"10","refresh":"true","realTimeSync":"true"}

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

print(response.json())
```

```javascript Get Payin transaction from Finmo realtime sync
const url = 'https://https/api/v1/payins/psp/%7BpspId%7D?page=1&pageSize=10&refresh=true&realTimeSync=true';
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 Get Payin transaction from Finmo realtime sync
package main

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

func main() {

	url := "https://https/api/v1/payins/psp/%7BpspId%7D?page=1&pageSize=10&refresh=true&realTimeSync=true"

	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 Get Payin transaction from Finmo realtime sync
require 'uri'
require 'net/http'

url = URI("https://https/api/v1/payins/psp/%7BpspId%7D?page=1&pageSize=10&refresh=true&realTimeSync=true")

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 Get Payin transaction from Finmo realtime sync
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.get("https://https/api/v1/payins/psp/%7BpspId%7D?page=1&pageSize=10&refresh=true&realTimeSync=true")
  .asString();
```

```php Get Payin transaction from Finmo realtime sync
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('GET', 'https://https/api/v1/payins/psp/%7BpspId%7D?page=1&pageSize=10&refresh=true&realTimeSync=true');

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

```csharp Get Payin transaction from Finmo realtime sync
using RestSharp;

var client = new RestClient("https://https/api/v1/payins/psp/%7BpspId%7D?page=1&pageSize=10&refresh=true&realTimeSync=true");
var request = new RestRequest(Method.GET);
IRestResponse response = client.Execute(request);
```

```swift Get Payin transaction from Finmo realtime sync
import Foundation

let request = NSMutableURLRequest(url: NSURL(string: "https://https/api/v1/payins/psp/%7BpspId%7D?page=1&pageSize=10&refresh=true&realTimeSync=true")! 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()
```

### Get Payin transaction from Finmo background sync

**Response**

```json
{
  "data": [
    {
      "pspId": "finmo",
      "amount": 1,
      "createAt": "2025-10-02T11:36:45Z",
      "currency": "IDR",
      "updatedAt": "2025-10-02T11:36:46Z",
      "customerId": "cus-01k6jbarcqgj0cje9ezgp2xj1z",
      "pspPayinId": "payin_a96d6e02b5094e68affc47d77f67382c",
      "syncStatus": {
        "state": "PROCESSING"
      },
      "pspPaymentType": "VA_PAYIN",
      "manisPaymentType": "VIRTUAL_ACCOUNT",
      "pspTransactionId": "txn_bb26aa23a2614b5f92d2ea368b86a304",
      "manisTransactionId": "txn-01k6jbbp2w0w8nx3yp6g57vjjn",
      "pspTransactionStatus": "COMPLETED",
      "manisTransactionStatus": "COMPLETED",
      "pspSpecificTransactionId": "payin_a96d6e02b5094e68affc47d77f67382c"
    },
    {
      "pspId": "finmo",
      "amount": 1,
      "createAt": "2025-10-02T11:35:39Z",
      "currency": "AUD",
      "updatedAt": "2025-10-02T11:35:41Z",
      "customerId": "cus-01k6jb95h22xv9y0hnfxnb41gb",
      "pspPayinId": "payin_bde38d54fbcc43b8a756cc2b7cf34c06",
      "syncStatus": {
        "state": "PROCESSING"
      },
      "pspPaymentType": "VA_PAYIN",
      "manisPaymentType": "VIRTUAL_ACCOUNT",
      "pspTransactionId": "txn_b79ecef6332b4b28a23a4b741b3d9c26",
      "manisTransactionId": "txn-01k6jb9p9ynsmgpfzck5m706mw",
      "pspTransactionStatus": "COMPLETED",
      "manisTransactionStatus": "COMPLETED",
      "pspSpecificTransactionId": "payin_bde38d54fbcc43b8a756cc2b7cf34c06"
    },
    {
      "pspId": "finmo",
      "amount": 1,
      "createAt": "2025-10-02T11:32:01Z",
      "currency": "SGD",
      "updatedAt": "2025-10-02T11:32:03Z",
      "customerId": "cus-01k6jar1tab361bv52ra46hmcj",
      "pspPayinId": "payin_559abd0c4df24b70ab91a32b5db4e845",
      "syncStatus": {
        "state": "PROCESSING"
      },
      "pspPaymentType": "VA_PAYIN",
      "manisPaymentType": "VIRTUAL_ACCOUNT",
      "pspTransactionId": "txn_1baa7eb6e53342e38c1657fa2c14049f",
      "manisTransactionId": "txn-01k6jb30v901gxt9s360q8n5my",
      "pspTransactionStatus": "COMPLETED",
      "manisTransactionStatus": "COMPLETED",
      "pspSpecificTransactionId": "payin_559abd0c4df24b70ab91a32b5db4e845"
    },
    {
      "pspId": "finmo",
      "amount": 20000000,
      "createAt": "2025-10-02T10:45:24Z",
      "currency": "SGD",
      "updatedAt": "2025-10-02T10:45:25Z",
      "customerId": "string",
      "pspPayinId": "payin_e14334f6f0a24bc6a916e8e93c5190a0",
      "syncStatus": {
        "state": "FAILED",
        "error": {
          "message": "No Manis transaction found or conflict detected for PSP payin ID: payin_e14334f6f0a24bc6a916e8e93c5190a0 and PSP transaction ID: txn_5a7b4d17eaa64349acf7104293f998ef"
        }
      },
      "pspPaymentType": "GCA_TOPUP",
      "manisPaymentType": "string",
      "pspTransactionId": "txn_5a7b4d17eaa64349acf7104293f998ef",
      "manisTransactionId": "string",
      "pspTransactionStatus": "COMPLETED",
      "manisTransactionStatus": "string",
      "pspSpecificTransactionId": "payin_e14334f6f0a24bc6a916e8e93c5190a0"
    },
    {
      "pspId": "finmo",
      "amount": 1,
      "createAt": "2025-10-02T08:43:19.582Z",
      "currency": "SGD",
      "updatedAt": "2025-10-02T08:43:19Z",
      "customerId": "cus-01k6j1dp2wyc8paz74gyhtvs52",
      "pspPayinId": "payin_563148de211a4a9b802283b55bbaa517",
      "syncStatus": {
        "state": "PROCESSING"
      },
      "pspPaymentType": "DIRECT_PAYIN",
      "manisPaymentType": "QR_CODE",
      "pspTransactionId": "string",
      "manisTransactionId": "txn-01k6j1e449gj1jb36rs78085x1",
      "pspTransactionStatus": "PENDING",
      "manisTransactionStatus": "EXCEPTION",
      "pspSpecificTransactionId": "payin_563148de211a4a9b802283b55bbaa517"
    },
    {
      "pspId": "finmo",
      "amount": 1,
      "createAt": "2025-10-02T06:33:01.908Z",
      "currency": "SGD",
      "updatedAt": "2025-10-02T06:33:02Z",
      "customerId": "cus-01k6hsg7n3dsmmebwekr01pgk3",
      "pspPayinId": "payin_45cd7a068702463a8d4c2c965117404a",
      "syncStatus": {
        "state": "PROCESSING"
      },
      "pspPaymentType": "DIRECT_PAYIN",
      "manisPaymentType": "QR_CODE",
      "pspTransactionId": "string",
      "manisTransactionId": "txn-01k6hszhttxy05ywf2fwn8b9ef",
      "pspTransactionStatus": "PENDING",
      "manisTransactionStatus": "EXCEPTION",
      "pspSpecificTransactionId": "payin_45cd7a068702463a8d4c2c965117404a"
    },
    {
      "pspId": "finmo",
      "amount": 1,
      "createAt": "2025-10-02T06:28:38.922Z",
      "currency": "SGD",
      "updatedAt": "2025-10-02T06:28:39Z",
      "customerId": "cus-01k6hsg7n3dsmmebwekr01pgk3",
      "pspPayinId": "payin_056358872ee64616b1268aebdfa71c34",
      "syncStatus": {
        "state": "PROCESSING"
      },
      "pspPaymentType": "DIRECT_PAYIN",
      "manisPaymentType": "QR_CODE",
      "pspTransactionId": "string",
      "manisTransactionId": "txn-01k6hsqh19tw0w97c05jfqx149",
      "pspTransactionStatus": "PENDING",
      "manisTransactionStatus": "EXCEPTION",
      "pspSpecificTransactionId": "payin_056358872ee64616b1268aebdfa71c34"
    },
    {
      "pspId": "finmo",
      "amount": 1,
      "createAt": "2025-10-01T11:47:07.750Z",
      "currency": "NZD",
      "updatedAt": "2025-10-01T11:47:23Z",
      "customerId": "cus-01k6fp86fp4npnrz7s6etj1mpn",
      "pspPayinId": "payin_50d154b31831429297a9318e24e49672",
      "syncStatus": {
        "state": "PROCESSING"
      },
      "pspPaymentType": "DIRECT_PAYIN",
      "manisPaymentType": "MASTER_GLOBAL_ACCOUNT",
      "pspTransactionId": "txn_bb80cda572714f5da8f0913eb30a3c19",
      "manisTransactionId": "txn-01k6fshz1pcbtd6pvsya68bqv9",
      "pspTransactionStatus": "COMPLETED",
      "manisTransactionStatus": "COMPLETED",
      "pspSpecificTransactionId": "payin_50d154b31831429297a9318e24e49672"
    },
    {
      "pspId": "finmo",
      "amount": 1,
      "createAt": "2025-10-01T11:46:39.565Z",
      "currency": "NZD",
      "updatedAt": "2025-10-01T11:46:39Z",
      "customerId": "cus-01k6fp86fp4npnrz7s6etj1mpn",
      "pspPayinId": "payin_2c61123f88ba4a8e91d0b8ba4b3c88d7",
      "syncStatus": {
        "state": "PROCESSING"
      },
      "pspPaymentType": "DIRECT_PAYIN",
      "manisPaymentType": "MASTER_GLOBAL_ACCOUNT",
      "pspTransactionId": "string",
      "manisTransactionId": "txn-01k6fsh3jzy9rswg16j5s68bas",
      "pspTransactionStatus": "PENDING",
      "manisTransactionStatus": "EXCEPTION",
      "pspSpecificTransactionId": "payin_2c61123f88ba4a8e91d0b8ba4b3c88d7"
    },
    {
      "pspId": "finmo",
      "amount": 1,
      "createAt": "2025-10-01T11:35:43.416Z",
      "currency": "SGD",
      "updatedAt": "2025-10-01T11:37:41Z",
      "customerId": "cus-01k6fp86fp4npnrz7s6etj1mpn",
      "pspPayinId": "payin_cea39cf53eba47f2ad6c28e08b83c2f4",
      "syncStatus": {
        "state": "PROCESSING"
      },
      "pspPaymentType": "DIRECT_PAYIN",
      "manisPaymentType": "QR_CODE",
      "pspTransactionId": "txn_9e3cd2812d9a4606852bab799f8c6462",
      "manisTransactionId": "txn-01k6frx2shmtpr2hbrntc744q9",
      "pspTransactionStatus": "COMPLETED",
      "manisTransactionStatus": "COMPLETED",
      "pspSpecificTransactionId": "payin_cea39cf53eba47f2ad6c28e08b83c2f4"
    }
  ],
  "pspTxnPageInfo": {
    "totalCount": 10,
    "failedCount": 1,
    "successCount": 0,
    "processingCount": 9
  }
}
```

**SDK Code**

```python Get Payin transaction from Finmo background sync
import requests

url = "https://https/api/v1/payins/psp/%7BpspId%7D"

querystring = {"page":"1","pageSize":"10","refresh":"true","realTimeSync":"true"}

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

print(response.json())
```

```javascript Get Payin transaction from Finmo background sync
const url = 'https://https/api/v1/payins/psp/%7BpspId%7D?page=1&pageSize=10&refresh=true&realTimeSync=true';
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 Get Payin transaction from Finmo background sync
package main

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

func main() {

	url := "https://https/api/v1/payins/psp/%7BpspId%7D?page=1&pageSize=10&refresh=true&realTimeSync=true"

	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 Get Payin transaction from Finmo background sync
require 'uri'
require 'net/http'

url = URI("https://https/api/v1/payins/psp/%7BpspId%7D?page=1&pageSize=10&refresh=true&realTimeSync=true")

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 Get Payin transaction from Finmo background sync
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.get("https://https/api/v1/payins/psp/%7BpspId%7D?page=1&pageSize=10&refresh=true&realTimeSync=true")
  .asString();
```

```php Get Payin transaction from Finmo background sync
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('GET', 'https://https/api/v1/payins/psp/%7BpspId%7D?page=1&pageSize=10&refresh=true&realTimeSync=true');

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

```csharp Get Payin transaction from Finmo background sync
using RestSharp;

var client = new RestClient("https://https/api/v1/payins/psp/%7BpspId%7D?page=1&pageSize=10&refresh=true&realTimeSync=true");
var request = new RestRequest(Method.GET);
IRestResponse response = client.Execute(request);
```

```swift Get Payin transaction from Finmo background sync
import Foundation

let request = NSMutableURLRequest(url: NSURL(string: "https://https/api/v1/payins/psp/%7BpspId%7D?page=1&pageSize=10&refresh=true&realTimeSync=true")! 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()
```