action daniweb_get_users_id_synergies { label: "get_users_ID_synergies" description: "Determine your match relationship with one or more users who exist within the current access token's bubble. Under some conditions, the price to meet the user will be $0. However, if this is not the case, the PayPal URL payment method will be provided along with the price to meet the user. The PayPal API can be leveraged to send payments programatically, provided the parameters passed in remain the same to ensure that the payment is correctly recorded. Once the payment has been recorded via PayPal IPN, the price to meet the user changes to $0. You can then call the users/{:ID}/meet endpoint to meet the user." provider: daniweb method: GET path: "/users/{ID}/synergies" encoding: json input: { type: "object" properties: { ID: { type: "array" items: { type: "integer" format: "int32" } } } required: ["ID"] additionalProperties: false } output: { type: "object" properties: { data: { type: "array" items: { type: "object" properties: { additional: { type: "object" properties: { metadata_count: { type: "number" format: "int32" } positions_count: { type: "number" format: "int32" } } } conversation: { type: "object" required: ["id"] properties: { first_message: { type: "object" properties: { author: { type: "object" required: ["id"] properties: { business_card: { type: "object" properties: { company_name: { type: "string" } company_size: { type: "string" } headline: { type: "string" } industry: { type: "string" } interest_tags: { type: "array" items: { type: "object" additionalProperties: true } } job_position: { type: "string" } summary: { type: "string" } website: { type: "object" properties: { thumbshot_uri: { type: "object" additionalProperties: true } url: { type: "object" additionalProperties: true } } } } } community_persona: { type: "object" required: ["id"] properties: { id: { type: "number" format: "int32" } identity: { type: "object" properties: { avatar_uri: { type: "object" additionalProperties: true } badge: { type: "object" additionalProperties: true } profile_url: { type: "object" additionalProperties: true } username: { type: "object" additionalProperties: true } } } location: { type: "object" properties: { free_form: { type: "object" additionalProperties: true } } } personal: { type: "object" properties: { about_me: { type: "object" additionalProperties: true } birthday: { type: "object" additionalProperties: true } interests: { type: "object" additionalProperties: true } pc_specs: { type: "object" additionalProperties: true } } } signature: { type: "object" properties: { parsed: { type: "object" additionalProperties: true } raw: { type: "object" additionalProperties: true } } } stats: { type: "object" properties: { answered_count: { type: "object" additionalProperties: true } endorsements_count: { type: "object" additionalProperties: true } posts_count: { type: "object" additionalProperties: true } reputation_count: { type: "object" additionalProperties: true } } } } } id: { type: "number" format: "int32" } profile: { type: "object" properties: { first_name: { type: "string" } last_name: { type: "string" } } } usage: { type: "object" properties: { available_status: { type: "boolean" } joined_timestamp: { type: "string" format: "date-time" } last_activity_timestamp: { type: "string" format: "date-time" } online_status: { type: "boolean" } } } } } timestamp: { type: "string" format: "date-time" } } } id: { type: "number" format: "int32" } latest_message: { type: "object" required: ["id"] properties: { author: { type: "object" additionalProperties: true } conversation: { type: "object" additionalProperties: true } id: { type: "number" format: "int32" } last_seen: { type: "object" properties: { timestamp: { type: "string" format: "date-time" } user: { type: "object" additionalProperties: true } } } text: { type: "object" properties: { parsed: { type: "string" } } } timestamp: { type: "string" format: "date-time" } } } user_a: { type: "object" additionalProperties: true } user_b: { type: "object" additionalProperties: true } } } match: { type: "object" properties: { algorithmic_match: { type: "boolean" } complementary_goals: { type: "array" items: { type: "string" } } distance_away: { type: "object" properties: { miles: { type: "number" format: "float" } } } industry: { type: "object" properties: { complementary: { type: "boolean" } mutual_match: { type: "boolean" } similar: { type: "boolean" } } } mutual_connections: { type: "object" properties: { count: { type: "number" format: "int32" } } } recommendation_strength: { type: "number" format: "float" } } } meet: { type: "object" properties: { payment: { type: "object" properties: { paypal: { type: "object" properties: { url: { type: "string" format: "uri" } } } } } price_usd: { type: "number" format: "float" } } } relationship: { type: "object" properties: { existing_bubbled_conversation: { type: "boolean" } existing_conversation: { type: "boolean" } muted: { type: "boolean" } skipped: { type: "boolean" } } } } } } } } }