All URIs are relative to https://api.dataforseo.com
| Method | HTTP request | Description |
|---|---|---|
| userData | GET /v3/appendix/user_data | |
| errors | GET /v3/appendix/errors | |
| webhookResend | POST /v3/appendix/webhook_resend | |
| appendixStatus | GET /v3/appendix/status |
AppendixUserDataResponseInfo userData()
const username = 'USERNAME';
const password = 'PASSWORD';
let api = new AppendixApi("https://api.dataforseo.com", {
fetch: (url: RequestInfo, init?: RequestInit): Promise<Response> => {
const token = btoa(`${username}:${password}`);
const authHeader = { 'Authorization': `Basic ${token}` };
const newInit: RequestInit = {
...init,
headers: {
...init?.headers,
...authHeader,
}
};
return fetch(url, newInit);
}
});
let response = await api.userData();This endpoint does not need any parameter.
- Content-Type: application/json
- Accept: application/json
| Status code | Description | Response headers |
|---|---|---|
| 200 | Successful operation | - |
AppendixErrorsResponseInfo errors()
const username = 'USERNAME';
const password = 'PASSWORD';
let api = new AppendixApi("https://api.dataforseo.com", {
fetch: (url: RequestInfo, init?: RequestInit): Promise<Response> => {
const token = btoa(`${username}:${password}`);
const authHeader = { 'Authorization': `Basic ${token}` };
const newInit: RequestInit = {
...init,
headers: {
...init?.headers,
...authHeader,
}
};
return fetch(url, newInit);
}
});
let response = await api.errors();This endpoint does not need any parameter.
- Content-Type: application/json
- Accept: application/json
| Status code | Description | Response headers |
|---|---|---|
| 200 | Successful operation | - |
AppendixWebhookResendResponseInfo webhookResend()
const username = 'USERNAME';
const password = 'PASSWORD';
let api = new AppendixApi("https://api.dataforseo.com", {
fetch: (url: RequestInfo, init?: RequestInit): Promise<Response> => {
const token = btoa(`${username}:${password}`);
const authHeader = { 'Authorization': `Basic ${token}` };
const newInit: RequestInit = {
...init,
headers: {
...init?.headers,
...authHeader,
}
};
return fetch(url, newInit);
}
});
let task = new AppendixWebhookResendRequestInfo();
task.id = "08161139-0001-0066-1000-06491d097ed5";
let response = await api.webhookResend([task]);| Name | Type | Description | Notes |
|---|---|---|---|
| **** | List<AppendixWebhookResendRequestInfo[]> | [optional] |
AppendixWebhookResendResponseInfo
- Content-Type: application/json
- Accept: application/json
| Status code | Description | Response headers |
|---|---|---|
| 200 | Successful operation | - |
AppendixStatusResponseInfo appendixStatus()
const username = 'USERNAME';
const password = 'PASSWORD';
let api = new AppendixApi("https://api.dataforseo.com", {
fetch: (url: RequestInfo, init?: RequestInit): Promise<Response> => {
const token = btoa(`${username}:${password}`);
const authHeader = { 'Authorization': `Basic ${token}` };
const newInit: RequestInit = {
...init,
headers: {
...init?.headers,
...authHeader,
}
};
return fetch(url, newInit);
}
});
let response = await api.appendixStatus();This endpoint does not need any parameter.
- Content-Type: application/json
- Accept: application/json
| Status code | Description | Response headers |
|---|---|---|
| 200 | Successful operation | - |