packages/api-client/InternalServiceFieldServiceInterfaceApi.md
All URIs are relative to http://backend/api/v1
| Method | HTTP request | Description |
|---|---|---|
| urlContentsAwareFill | POST /internal/field/url/awareContents | get url related information |
ResponseDataUrlAwareContentsVo urlContentsAwareFill(urlsWrapperRo)
get url related information
import { } from '';
import * as fs from 'fs';
const configuration = .createConfiguration();
const apiInstance = new .InternalServiceFieldServiceInterfaceApi(configuration);
let body:.InternalServiceFieldServiceInterfaceApiUrlContentsAwareFillRequest = {
// UrlsWrapperRo
urlsWrapperRo: {
urls: [
"urls_example",
],
},
};
apiInstance.urlContentsAwareFill(body).then((data:any) => {
console.log('API called successfully. Returned data: ' + data);
}).catch((error:any) => console.error(error));
| Name | Type | Description | Notes |
|---|---|---|---|
| urlsWrapperRo | UrlsWrapperRo |
ResponseDataUrlAwareContentsVo
No authorization required
| Status code | Description | Response headers |
|---|---|---|
| 200 | OK | - |
| 500 | Internal Server Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]