Skip to main content
PATCH
/
reseller
/
links
/
{id}
Update a link
curl --request PATCH \
  --url https://api.offergrid.io/reseller/links/{id} \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "propertyName": "Sunset Apartments Unit 205",
  "moveInDate": "2025-02-01",
  "status": "active"
}
'

Authorizations

x-api-key
string
header
required

Team API key for authentication. Your team role (provider/reseller/hybrid) determines which endpoints you can access.

Path Parameters

id
string
required

Body

application/json
propertyName
string

Property name or description

Example:

"Sunset Apartments Unit 205"

moveInDate
string

Expected move-in date (ISO 8601)

Example:

"2025-02-01"

status
enum<string>

Link status

Available options:
active,
inactive
Example:

"active"

Response

Link successfully updated