Skip to main content
POST
/
reseller
/
links
Create a shareable link
curl --request POST \
  --url https://api.offergrid.io/reseller/links \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "address": {
    "street": "123 Main Street",
    "city": "Austin",
    "state": "TX",
    "zipCode": "78701",
    "country": "US",
    "unit": "Unit 205"
  },
  "propertyName": "Sunset Apartments Unit 205",
  "moveInDate": "2025-02-01"
}
'

Authorizations

x-api-key
string
header
required

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

Body

application/json
address
Address · object
required

Service address for the tenant

propertyName
string

Property name or description

Example:

"Sunset Apartments Unit 205"

moveInDate
string

Expected move-in date (ISO 8601)

Example:

"2025-02-01"

Response

201

Link successfully created