Urban Outfitters · Schema

AffiliateLinkCreate

Request to create an affiliate link

RetailFashionApparelEcommerceAffiliateMarketplaceFortune 1000

Properties

Name Type Description
targetUrl string The Urban Outfitters URL to create an affiliate link for
affiliateId string Affiliate account identifier
View JSON Schema on GitHub

JSON Schema

affiliate-api-affiliate-link-create-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/urban-outfitters/refs/heads/main/json-schema/affiliate-api-affiliate-link-create-schema.json",
  "title": "AffiliateLinkCreate",
  "description": "Request to create an affiliate link",
  "type": "object",
  "properties": {
    "targetUrl": {
      "type": "string",
      "description": "The Urban Outfitters URL to create an affiliate link for",
      "example": "https://www.urbanoutfitters.com/shop/prod-12345"
    },
    "affiliateId": {
      "type": "string",
      "description": "Affiliate account identifier",
      "example": "aff-abc123"
    }
  },
  "required": [
    "targetUrl",
    "affiliateId"
  ]
}