Google Accounts

List Google Accounts

GET https://neodrive.my.id/api/v1/google-accounts

Searching File URL example : https://neodrive.my.id/api/v1/google-accounts?q=MySearch

Goto pagination URL example : https://neodrive.my.id/api/v1/google-accounts?page=1

Query Parameters

Headers

{
    "status": 200,
    "items": [
        {
            "id": "1",
            "email": "example1@gmail.com",
            "is_expired": false
        },
        {
            "id": "2",
            "email": "example2@gmail.com",
            "is_expired": false
        }
    ],
    "currentPage": 1,
    "totalPage": 1
}
curl --location --request GET 'https://neodrive.my.id/api/v1/google-accounts' \
--header 'neodrive-api: 625092296266470295046fd6bd9c44a5'

Delete Google Account

DELETE https://neodrive.my.id/api/v1/google-accounts

Headers

Request Body

{
    "status": 200,
    "message": "account deleted"
}

Last updated