amocrm-php icon indicating copy to clipboard operation
amocrm-php copied to clipboard

Зная id-сделки получить id контакта

Open Aligan opened this issue 6 years ago • 3 comments

Как получить id конаткта, зная id-сделки?

Aligan avatar Feb 12 '19 14:02 Aligan

Как получить id конаткта, зная id-сделки?

$amo = new \AmoCRM\Client(getenv('DOMAIN'), getenv('LOGIN'), getenv('HASH'));

public function getLeadContacts($leadId)
{
    $contacts = [];
    for($limit = 0; $limit < time(); $limit += 500){
        $contact = $amo->contact->apiList([
            'limit_rows' => 500,
            'limit_offset' => $limit
        ]);
        if(!empty($contact)){
            $contacts[] = $contact;
        }else{
            break;
        }
    }
    $contacts = array_reduce($contacts, 'array_merge', array());
    $contacts = array_filter($contacts, function($arr) use($leadId){
        return  in_array($leadId, $arr['linked_leads_id']);
    });
    $contacts = array_values($contacts);
    return $contacts;
}

waspmax1 avatar Feb 19 '19 13:02 waspmax1

DeepinScreenshot_выберите-область_20190614103138 Сначала получить информацию по сделке. Потом найти поле Тыц

shmidtelson avatar Jun 14 '19 07:06 shmidtelson

Как получить id конаткта, зная id-сделки?

Решилась проблемка то?

shmidtelson avatar Sep 23 '19 12:09 shmidtelson