Back to Apitable

.InternalServiceFieldServiceInterfaceApi

packages/api-client/InternalServiceFieldServiceInterfaceApi.md

1.13.0-beta.11.7 KB
Original Source

.InternalServiceFieldServiceInterfaceApi

All URIs are relative to http://backend/api/v1

MethodHTTP requestDescription
urlContentsAwareFillPOST /internal/field/url/awareContentsget url related information

urlContentsAwareFill

ResponseDataUrlAwareContentsVo urlContentsAwareFill(urlsWrapperRo)

get url related information

Example

typescript
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));

Parameters

NameTypeDescriptionNotes
urlsWrapperRoUrlsWrapperRo

Return type

ResponseDataUrlAwareContentsVo

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: /

HTTP response details

Status codeDescriptionResponse headers
200OK-
500Internal Server Error-

[Back to top] [Back to API list] [Back to Model list] [Back to README]