Get Builders list

Get all Builders list.


Settings:

URL

https://partners.99digital.co.il/api/builder/getBuilders

Method

JSON via GET

Header

Authorization: Bearer {{access_token}}

*The access_token can be received from settings->get access token API.


Body: nothing, leave it empty.

Response:


{
    "status": "OK",
    "reason": 1,
    "totalBuilders": 2,
    "list": [
        {
            "create_time": 1735811185,
            "client": "My Client A",
            "builderID": "1",
            "url": "https://builder4.99digital.co.il/"
        },
        {
            "create_time": 1735811185,
            "client": "My Client B",
            "builderID": "2",
            "url": "https://builder4.99digital.co.il/"
        }
    ]
}


Response-Explain:

Parameter

Description

status

OK or FAIL

"OK" means the request has been sent to Meta.

"Fail" means error.

totalBuilders

The total number of builders account you manage

list

array of the following table []:

name

explanation

create_time

The UNIX time that this account was created

client

The client name you provided

builderID

The builder ID that was assigned to you when creating the builder

url

The URL to access the builder

reference

Your reference value

reason

'reason' is the status explanation in case of FAIL

1

not FAIL. the status is OK

2

Wrong credentials

3

Access token does not exist or expired, please generate another one from Settings - Get access token API

13

you need to use GET method.