For the complete documentation index, see llms.txt. This page is also available as Markdown.

Request

Frends Task for sending Http request to LinkedIn API.

Task version: 1.1.0

Required Frends version: 5.1+

Required .NET version: 471, 6.0, standard2.0

Compatible Agents: Legacy, Crossplatform

Task Parameters

Name
Description

Method : Method

The HTTP Method to be used with the request.

Possible values:

  • GET: The HTTP Method to be used with the request.

  • POST: The HTTP Method to be used with the request.

  • PUT: The HTTP Method to be used with the request.

  • PATCH: The HTTP Method to be used with the request.

  • DELETE: The HTTP Method to be used with the request.

  • HEAD: The HTTP Method to be used with the request.

  • OPTIONS: The HTTP Method to be used with the request.

  • CONNECT: The HTTP Method to be used with the request.

Default: 0 Example: GET

Url : String

Something that will be repeated.

Default: https://api.linkedin.com/rest/ Example: Some example of the expected value.

Message : String

The message text to be sent with the request.

Default: - Example: { "Body": "Message" }

Headers : Header[]

List of HTTP headers to be added to the request.

Default: - Example: Name: Header, Value: HeaderValue

Task Result

Name
Description

Body : Object

Body of response. Response body contains two properties: paging and elements. Example: {"paging": {"start": 0, "count":10, "links": [], "total": 1}, "elements": [{"totalBudget": ...}]}

Headers : Dictionary<String, String>

Headers of response Example: {[ "content-type": "application/json", ... ]}

StatusCode : Int32

Status code of the response. Example: 200

Task Changelog

Changelog for Task Frends.LinkedIn.Request.

[1.1.0] - 2025-03-18

Changed

  • Update packages: Newtonsoft.Json 12.0.3 -> 13.0.3 System.ComponentModel.Annotations 4.7.0 -> 5.0.0 System.Runtime.Caching 7.0.0 -> 9.0.3 coverlet.collector 3.1.2 -> 6.0.4 Microsoft.NET.Test.Sdk 16.6.1 -> 17.13.0 nunit 3.12.0 -> 4.3.2 NUnit3TestAdapter 3.17.0 -> 5.0.0

[1.0.0] - 2023-12-18

Changed

  • Initial implementation

Last updated

Was this helpful?