A credential is used by LeadConduit's rich integrations to authenticate with third party platforms. Once a credential is established, it can be used across flows. A credential ID can be specified on a source in a flow or in recipient step's integration mappings.
curl -i -X GET \ https://app.leadconduit.com/credentials
[- {
- "id": "string",
- "name": "string",
- "type": "user",
- "package": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "username": "string",
- "password": "string"
}
]
Create a new credential
Create a new credential
Created
{- "name": "string",
- "type": "string",
- "package": "string",
- "username": "string",
- "password": "string"
}
{- "id": "string",
- "name": "string",
- "type": "string",
- "package": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "username": "string",
- "password": "string"
}
curl -i -X GET \ https://app.leadconduit.com/credentials/:id
{- "id": "string",
- "name": "string",
- "type": "string",
- "package": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "username": "string",
- "password": "string"
}
Update an existing credential matching the specified ID
Create a new credential
OK
{- "name": "string",
- "type": "string",
- "package": "string",
- "username": "string",
- "password": "string"
}
{- "id": "string",
- "name": "string",
- "type": "string",
- "package": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "username": "string",
- "password": "string"
}
curl -i -X DELETE \ https://app.leadconduit.com/credentials/:id
{- "id": "string",
- "name": "string",
- "type": "string",
- "package": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "username": "string",
- "password": "string"
}