Get missing org report status
curl --request GET \
--url https://api.dev.endaoment.org/v1/missing-org-reports/{id}import requests
url = "https://api.dev.endaoment.org/v1/missing-org-reports/{id}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.dev.endaoment.org/v1/missing-org-reports/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.dev.endaoment.org/v1/missing-org-reports/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.dev.endaoment.org/v1/missing-org-reports/{id}"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.dev.endaoment.org/v1/missing-org-reports/{id}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.dev.endaoment.org/v1/missing-org-reports/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"id": "550e8400-e29b-41d4-a716-446655440000",
"ein": "123456789",
"organizationName": "Example Nonprofit",
"status": "submitted",
"resolvedOrgId": "550e8400-e29b-41d4-a716-446655440001",
"rejectionReason": "Organization is not eligible for onboarding"
}Nonprofit Organizations
Get missing org report status
GET
/
v1
/
missing-org-reports
/
{id}
Get missing org report status
curl --request GET \
--url https://api.dev.endaoment.org/v1/missing-org-reports/{id}import requests
url = "https://api.dev.endaoment.org/v1/missing-org-reports/{id}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.dev.endaoment.org/v1/missing-org-reports/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.dev.endaoment.org/v1/missing-org-reports/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.dev.endaoment.org/v1/missing-org-reports/{id}"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.dev.endaoment.org/v1/missing-org-reports/{id}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.dev.endaoment.org/v1/missing-org-reports/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"id": "550e8400-e29b-41d4-a716-446655440000",
"ein": "123456789",
"organizationName": "Example Nonprofit",
"status": "submitted",
"resolvedOrgId": "550e8400-e29b-41d4-a716-446655440001",
"rejectionReason": "Organization is not eligible for onboarding"
}Response
Missing org report UUID
Example:
"550e8400-e29b-41d4-a716-446655440000"
EIN of the reported organization, normalized to 9 digits
Example:
"123456789"
Name of the reported organization
Example:
"Example Nonprofit"
Current status of the report
Available options:
submitted, approved, rejected Example:
"submitted"
Resolved org UUID, present only when the report is approved
Example:
"550e8400-e29b-41d4-a716-446655440001"
Free-text rejection reason, present only when the report is rejected
Example:
"Organization is not eligible for onboarding"
Was this page helpful?