Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 8 Next »

Get an organization by email

Description

Get an organization by email.

Package Details

Interface

IOrganizationManager

Syntax

await OrganizationManager.FindByEmail(string email)

Returns

Task<IEnumerable<Organization>>

API

GET
/api/v1/organizations?email={email}

Parameters

Parameter

Description

Parameter Type

email

The Email address associated to the organization

Query string

Returns

On success, 200 Ok

When the specified email is not found, 404 Not Found

On error, 400 Bad Request

On authorization error, 403 Forbidden

Example

var email = "user@domain.com";
var organization = await _organizationManager.FindByEmail(email);

  • No labels