Applications

Add application mapping

post
Body
userIdstringRequired
listingIdsstring[]Required
Responses
201
Resource created successfully
application/json
post
POST /applications HTTP/1.1
Host: 
Content-Type: application/json
Accept: */*
Content-Length: 39

{
  "userId": "text",
  "listingIds": [
    "text"
  ]
}
{
  "message": "text"
}

Get application mappings for user

get
Path parameters
userIdstringRequired

The user ID to get applications for

Responses
200
Application mappings retrieved successfully
application/json
get
GET /applications/{userId} HTTP/1.1
Host: 
Accept: */*
{
  "userId": "text",
  "listingIds": [
    "text"
  ]
}