Yedpay

Description (Company Contract List)

Company Contract list (GET)

End Point

https://api.yedpay.com/v1/companies/{{company_id}}/contracts

Variable

# Name Type Description
1 company_id String Unique identifier of the company

Request Header

# Key Value Description
1 Authorization Bearer {{access_token}} Login Token

Body

# Name Type Description

Response

# Name Type Description
1 success Boolean Show Contract Information Success or Fail
2 data Array Include Contract Information (id, file_id, type etc..)

Success Response - data

# Name Type Description
1 id String Unique identifier of the contract
2 company_id String Unique identifier of the company related to the contract
3 type String Type of the contract
4 file_id String Unique identifier of the contract file
5 status String Status of the contract
6 generated_at String Date of contract being generated (format: YYYY-MM-DD)
7 client_approved_at String Date of contract being signed/approved by client (format: YYYY-MM-DD)
8 expires_at String Expiry date of the contract (format: YYYY-MM-DD)
9 created_at String Datetime of contract model being created (format: YYYY-MM-DD hh:mm:ss)
10 updated_at String Datetime the contract last updated (format: YYYY-MM-DD hh:mm:ss)

Example Success Response

            {
                "success": true,
                "data": [
                    {
                        "id": "7E52LGO239WZ68YJDQ",
                        "company_id": "R350MQONP35KEJDYL4",
                        "type": "offline_gateway_agreement",
                        "file_id": "VJ9310KLV7LO4LM26Y",
                        "status": "INACTIVE",
                        "generated_at": "2019-10-23",
                        "client_approved_at": "",
                        "expires_at": "",
                        "created_at": 2023-06-03 05:34:12,
                        "updated_at": 2023-06-03 05:34:12
                    },
                    {
                        "id": "7V8GMYOW4E0ZEJ5NL2",
                        "company_id": "80P79LK927QZVXJ1DQ",
                        "type": "online_gateway_agreement",
                        "file_id": "3WJ2PMK6YE9Z7Y6DN5",
                        "status": "INACTIVE",
                        "generated_at": "2019-10-23",
                        "client_approved_at": "2019-10-24",
                        "expires_at": "",
                        "created_at": 2023-06-03 05:34:12,
                        "updated_at": 2023-06-03 05:34:12
                    },
                    {
                        "id": "M49E60Z7EDGO17G5DN",
                        "company_id": "3GWX1LKVG2XKER4NYP",
                        "type": "offline_gateway_agreement",
                        "file_id": "7E52LGO2LWVK68YJDQ",
                        "status": "ACTIVE",
                        "generated_at": "2019-10-23",
                        "client_approved_at": "2019-10-24",
                        "expires_at": "2021-10-24",
                        "created_at": 2023-06-03 05:34:12,
                        "updated_at": 2023-06-03 05:34:12
                    }
                ],
                "meta": {
                    "pagination": {
                        "total": 2,
                        "count": 2,
                        "per_page": 40,
                        "current_page": 1,
                        "total_pages": 1,
                        "links": []
                    }
                }
            }

Example Error Response

            {
                "success": false,
                "message": "Unauthenticated.",
                "status": 500
            }
        

Available Contract Type

# Type Description
0 other_agreement Other Agreement
1 offline_gateway_agreement Offline Gateway Agreement
2 online_gateway_agreement Online Gateway Agreement

Possible Status

Type Description
ACTIVE Contract is active
INACTIVE Contract is inactive

v1.61.15-20230523 © The Payment Cards Group Limited. All rights reserved.